提交 db5c15ad 编写于 作者: W WangNing

修复百度小程序下mounted可能不执行的问题

上级 99a138c9
export const mocks = ['nodeId', 'componentName', '_componentId', 'uniquePrefix']
export function isPage () {
return !this.ownerId
// 百度小程序组件的id,某些情况下可能是number类型的0,不能直接return !this.ownerId 判断当前组件是否是Page
// 否则会导致mounted不执行
return typeof this.ownerId === 'undefined'
}
export function initRelation (detail) {
this.dispatch('__l', detail)
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册