mirror of
https://github.com/Tencent/WeKnora.git
synced 2025-11-26 03:45:11 +08:00
6 lines
462 B
TypeScript
6 lines
462 B
TypeScript
|
|
/// <reference types="vite/client" />
|
|||
|
|
// 配置这个文件是 解决错误:找不到模块“@/views/login/index.vue”或其相应的类型声明。ts(2307)
|
|||
|
|
// 这段代码告诉 TypeScript,所有以 .vue 结尾的文件都是 Vue 组件,可以通过 import 语句进行导入。这样做通常可以解决无法识别模块的问题。
|
|||
|
|
declare module '*.vue' {
|
|||
|
|
import { Component } from 'vue'; const component: Component; export default component;
|
|||
|
|
}
|