拼板印
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
303 B

/**
* uni-app 没有使用微信小程序的 Page 方法创建页面,所以暂时不加该检测
* @param {*} monitor
*/
export function rewritePage(monitor) {
const originPage = Page
Page = function (pageOptions) {
console.log('🍰', pageOptions)
return originPage(pageOptions)
}
}