store.js 330 B

1234567891011121314
  1. import * as uniIdPagesStore from '@/uni_modules/uni-id-pages/common/store'
  2. // #ifndef VUE3
  3. export function initUniIdPageStore(Vue) {
  4. Vue.prototype.$uniIdPagesStore = uniIdPagesStore
  5. }
  6. // #endif
  7. // #ifdef VUE3
  8. export function initUniIdPageStore(app) {
  9. app.config.globalProperties.$uniIdPagesStore = uniIdPagesStore
  10. }
  11. // #endif