nkt / atom-autocomplete-modules

Autocomplete for require/import statements
https://atom.io/packages/autocomplete-modules
MIT License
114 stars 35 forks source link

No working with .vue files #73

Open throrin19 opened 7 years ago

throrin19 commented 7 years ago

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

nkt commented 7 years ago

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

throrin19 commented 7 years ago

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 commented 7 years ago

Any news ?

jonyeezs commented 6 years ago

Hello unfortunately none of the current maintainers use vue.

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