mirror of
https://github.com/taigrr/wails.git
synced 2026-04-17 04:05:12 -07:00
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
import Vue from "vue";
|
|
export const eventBus = new Vue();
|
|
|
|
import App from "./App.vue";
|
|
new Vue({
|
|
render: h => h(App)
|
|
}).$mount("#app");
|
|
|
|
import Bridge from "./wailsbridge";
|
|
Bridge.OnReady(() => {
|
|
eventBus.$emit("ready");
|
|
});
|
|
Bridge.Start();
|