mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 23:20:51 +08: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();
|