Implemented NativeScript-Vue CLI Plugin

This commit is contained in:
Joel Collins 2019-04-25 14:35:52 +01:00
parent 1ffadb042f
commit 97cc5d2b78
72 changed files with 3554 additions and 636 deletions

14
src/main.native.js Normal file
View file

@ -0,0 +1,14 @@
import Vue from 'nativescript-vue';
import App from './App.native.vue';
import store from './store';
// Set the following to `true` to hide the logs created by nativescript-vue
Vue.config.silent = false;
// Set the following to `false` to not colorize the logs created by nativescript-vue
// disabled in template due to typing issue for Typescript projects....NEEDS TO BE FIXED
// Vue.config.debug = true;
new Vue({
store,
render: h => h('frame', [h(App)])
}).$start();