├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── package.json ├── spec └── main.spec.vue └── src └── main.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | build -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/package.json -------------------------------------------------------------------------------- /spec/main.spec.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/spec/main.spec.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romans127/atom-ide-vue/HEAD/src/main.js --------------------------------------------------------------------------------