main.js 211 B

1234567891011
  1. import Vue from 'nativescript-vue'
  2. import App from './components/App'
  3. import * as Sqlite from 'nativescript-sqlite';
  4. let initDb = function (db){
  5. db.execSQL()
  6. }
  7. new Vue({
  8. render: (h) => h(App),
  9. }).$start()