import Vue from 'nativescript-vue' import App from './components/App' import * as Sqlite from 'nativescript-sqlite'; let initDb = function (db){ db.execSQL() } new Vue({ render: (h) => h(App), }).$start()