The release of v1.0.0 brings with it some breaking changes, however it is relatively easy to migrate older projects. The steps required are:
frontend/src/wailsbridge.js
if you have it@wailsapp/runtime
module, EG: npm install --save @wailsapp/runtime
// import Bridge from "./wailsbridge";
import * as Wails from "@wailsapp/runtime"
//Bridge.Start(() => {
Wails.Init(() => {
new Vue({
router,
render: h => h(App)
}).$mount("#app");
});
If you are feeling adventurous, you could try the highly experimental migrate command:
wails migrate
.