store.js 330 字节
Newer Older
M
MicroMilo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
import * as uniIdPagesStore from '@/uni_modules/uni-id-pages/common/store'

// #ifndef VUE3
export function initUniIdPageStore(Vue) {
	Vue.prototype.$uniIdPagesStore = uniIdPagesStore
}
// #endif

// #ifdef VUE3
export function initUniIdPageStore(app) {
	app.config.globalProperties.$uniIdPagesStore = uniIdPagesStore
}
// #endif