Open throrin19 opened 7 years ago
Hello, I'm not familiar with vueJS, can you show me code example where this plugin should help?
The .vue
files are HTML files (with text.html.vue
scope in atom) like this :
<template>
<v-app
height="415px"
dark
id="app"
standalone
>
<drawer></drawer>
<toolbar></toolbar>
<main>
<router-view></router-view>
</main>
</v-app>
</template>
<script>
import toolbar from './index/toolbar.vue';
import drawer from './index/drawer.vue';
export default {
namr : 'App',
components : {
toolbar,
drawer,
// titleBar,
// menuLeft,
},
};
</script>
<style lang="scss" rel="stylesheet/scss">
main {
position: absolute;
right: 0;
top: 64px;
bottom: 0;
left: 0;
overflow: auto;
}
</style>
Any news ?
Hello unfortunately none of the current maintainers use vue.
We would be more than happy for you to put in a pull request :)
Hi, It's possible to add the hability to works with vueJS components files ?