├── .babelrc ├── JsComponent.js ├── LICENSE ├── README.md ├── VueComponent.vue ├── app.css ├── app.js ├── app.scss ├── images ├── apple.jpg └── vue.png ├── package.json ├── postinstall.js ├── tns └── app │ ├── app.css │ ├── app.js │ └── package.json ├── vendor-platform.android.js ├── vendor-platform.ios.js ├── vendor.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/.babelrc -------------------------------------------------------------------------------- /JsComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/JsComponent.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/README.md -------------------------------------------------------------------------------- /VueComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/VueComponent.vue -------------------------------------------------------------------------------- /app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/app.css -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/app.js -------------------------------------------------------------------------------- /app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/app.scss -------------------------------------------------------------------------------- /images/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/images/apple.jpg -------------------------------------------------------------------------------- /images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/images/vue.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/package.json -------------------------------------------------------------------------------- /postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/postinstall.js -------------------------------------------------------------------------------- /tns/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/tns/app/app.css -------------------------------------------------------------------------------- /tns/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/tns/app/app.js -------------------------------------------------------------------------------- /tns/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/tns/app/package.json -------------------------------------------------------------------------------- /vendor-platform.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/vendor-platform.android.js -------------------------------------------------------------------------------- /vendor-platform.ios.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/vendor.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tralves/nativescript-vue-webpack-template/HEAD/webpack.config.js --------------------------------------------------------------------------------