create-page.js 274 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1
import parsePage from 'uni-platform/runtime/wrapper/page-parser'
2

fxy060608's avatar
fxy060608 已提交
3
export default function createPage (vuePageOptions) {
fxy060608's avatar
fxy060608 已提交
4 5
  if (__PLATFORM__ === 'mp-alipay') {
    return Page(parsePage(vuePageOptions))
6
  } else {
fxy060608's avatar
fxy060608 已提交
7
    return Component(parsePage(vuePageOptions))
8
  }
9
}