css
liukangdong
2024-06-03 248f2f32b0f1e406a8110f0839702914a9c3ca0a
h5/main.js
@@ -17,7 +17,14 @@
Vue.use(uView)
Vue.component('Tabbar', Tabbar)
Vue.component('navigation', navigation)
Vue.prototype.$store = store;
Vue.prototype.$store = store
Vue.prototype.$jump = (url) => {
   uni.navigateTo({
      url
   })
}
Vue.prototype.$goBack = () => { uni.navigateBack() }
Vue.prototype.$eventBus = new Vue()
Vue.prototype.$onWait = new Promise((resolve) => {
  Vue.prototype.$reslove = resolve
})
@@ -25,7 +32,7 @@
const app = new Vue({
   store,
  store,
  ...App
})