mirror of
https://github.com/taigrr/wails.git
synced 2026-04-16 11:44:49 -07:00
16 lines
300 B
JavaScript
16 lines
300 B
JavaScript
import 'core-js/stable';
|
|
import 'regenerator-runtime/runtime';
|
|
import Vue from 'vue';
|
|
import App from './App.vue';
|
|
|
|
Vue.config.productionTip = false;
|
|
Vue.config.devtools = true;
|
|
|
|
import * as Wails from '@wailsapp/runtime';
|
|
|
|
Wails.Init(() => {
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount('#app');
|
|
});
|