@cataract6545/tmui
Version:
tm-vuetify是一个新势力由主题驱动的UI组件库,相比其它优势大,组件全,设计趋势紧跟未来。具有主题生成,主题实时切换,暗黑实时切换,lottie动画,图表等新颖功能,tmui TMUI
27 lines (25 loc) • 907 B
text/typescript
import { ComponentPublicInstance, nextTick } from "vue"
//如果想要使用框架的自带工具函数请输入uni.$tm.u.?你的方法
//网络请示为uni.$tm.fetch.?你的方法
interface beforeRouterOpts {
path:string|null,//当前页面路径,不含前缀 /
opts?:any,//页面参数
openType?:string,//当前页面打开的类型
context:ComponentPublicInstance|null,
}
/**
* 路由访问前执行的函数
* @param path 页面路径,不带前缀/
*/
export const useTmRouterBefore = (arg:beforeRouterOpts):void=>{
// 每一个页面在初化前都会执行
//返回事件,只有在h5端可以被拦截。
}
/**
* 路由访问后执行的函数
* @param path 页面路径,不带前缀/
* @param opts 页面加载完成后返回的参数
*/
export const useTmRouterAfter = (arg:beforeRouterOpts):void=>{
//每一个页面初始后都会执行
}