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.
14 lines
268 B
14 lines
268 B
2 years ago
|
import { proxyLaunchHook } from './hooks';
|
||
|
|
||
|
/**
|
||
|
* 开始初始化app端路由配置
|
||
|
*
|
||
|
* @param {Object} Router 当前Router对象
|
||
|
*
|
||
|
* this 为当前 page 对象
|
||
|
*/
|
||
|
const appletsInit = function () {
|
||
|
proxyLaunchHook.call(this);
|
||
|
};
|
||
|
export default appletsInit;
|