提交 36b5d14d 编写于 作者: fxy060608's avatar fxy060608

fix(h5): compatible with mp

上级 cb80d752
......@@ -59,8 +59,8 @@ function getLocation (base = '/') {
export default {
install (Vue, {
routes
} = {}) {
initPolyfill(Vue)
} = {}) {
initPolyfill(Vue)
lifecycleMixin(Vue)
......@@ -147,9 +147,15 @@ export default {
const pageMixin = createPageMixin()
// mixin page hooks
Object.keys(pageMixin).forEach(hook => {
options[hook] = options[hook] ? [].concat(pageMixin[hook], options[hook]) : [
pageMixin[hook]
]
if (options.mpOptions) { // 小程序适配出来的 vue 组件(保证先调用小程序适配里的 created,再触发 onLoad)
options[hook] = options[hook] ? [].concat(options[hook], pageMixin[hook]) : [
pageMixin[hook]
]
} else {
options[hook] = options[hook] ? [].concat(pageMixin[hook], options[hook]) : [
pageMixin[hook]
]
}
})
} else {
if (this.$parent && this.$parent.__page__) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册