atom-autocomplete-modules icon indicating copy to clipboard operation
atom-autocomplete-modules copied to clipboard

No working with .vue files

Open throrin19 opened this issue 6 years ago • 4 comments

Hi, It's possible to add the hability to works with vueJS components files ?

throrin19 avatar Sep 26 '17 10:09 throrin19

Hello, I'm not familiar with vueJS, can you show me code example where this plugin should help?

nkt avatar Sep 28 '17 15:09 nkt

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>

throrin19 avatar Sep 29 '17 09:09 throrin19

Any news ?

throrin19 avatar Nov 02 '17 08:11 throrin19

Hello unfortunately none of the current maintainers use vue.

We would be more than happy for you to put in a pull request :)

jonyeezs avatar Apr 06 '18 12:04 jonyeezs