forked from go/golangs_learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
427 B
19 lines
427 B
import 'core-js/stable'
|
|
import 'regenerator-runtime/runtime'
|
|
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import store from './store'
|
|
import * as Wails from '@wailsapp/runtime'
|
|
import VTooltip from 'v-tooltip'
|
|
|
|
Vue.use(VTooltip, { defaultDelay: 600, defaultOffset: 16 })
|
|
|
|
Vue.config.productionTip = false
|
|
Vue.config.devtools = true
|
|
|
|
Wails.Init(() => {
|
|
new Vue({
|
|
render: h => h(App),
|
|
store
|
|
}).$mount('#app')
|
|
})
|
|
|