13 lines
350 B
TypeScript
13 lines
350 B
TypeScript
declare module '*.vue' {
|
|
import { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|
|
|
|
// 添加对 @/views 的路径支持(可选)
|
|
declare module '@/views/*' {
|
|
import { DefineComponent } from 'vue'
|
|
const component: DefineComponent<{}, {}, any>
|
|
export default component
|
|
}
|