shim-vue.d.ts 291 B

1234567
  1. // 一个TypeScript声明文件,用于告诉TypeScript编译器如何处理`.vue`文件。这是Vue3和TypeScript集成的一部分。
  2. declare module '*.vue' {
  3. import { defineComponent } from 'vue'
  4. constcomponent: ReturnType<typeof defineComponent>
  5. export default component
  6. }