使用Vite创建一个项目
yarn create vite
- 输入项目名称
- 选择框架vue
- 选择TypeScript
- 进入项目,安装依赖
安装Vuetify3
在项目根目录下面,执行:
vue add vuetify
选择预设→Vuetify 3 - Vite (preview)
解决main.ts 引入./App.vue爆红提示
在vite-env.d.ts
中添加一下代码。
declare module "*.vue" {
import { DefineComponent } from "vue"
const component: DefineComponent<{}, {}, any>
export default component
}
在这段代码中,我们使用了TypeScri
评论(0)