11 lines
218 B
TypeScript
11 lines
218 B
TypeScript
|
import 'uniapp-router-next'
|
||
|
declare module 'uniapp-router-next' {
|
||
|
// 扩展 RouteMeta
|
||
|
interface RouteMeta {
|
||
|
share?: boolean
|
||
|
auth?: boolean
|
||
|
white?: string
|
||
|
isTab?: boolean
|
||
|
}
|
||
|
}
|