This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
handingkang-ohmyweb/types/vue-proptery.d.ts

15 lines
255 B
TypeScript
Raw Normal View History

import { ElMessage } from "element-plus"
declare module "@vue/runtime-core" {
interface ComponentCustomProperties {
$message: ElMessage
}
}
declare module "vue-router" {
interface RouteMeta {
roles?: string[]
activeMenu?: string
}
}