WIP: Vue 3 迁移 #15

Closed
jixunmoe wants to merge 12 commits from (deleted):migration-to-vue-3 into master
1 changed files with 5 additions and 0 deletions
Showing only changes of commit 6e0a07fadb - Show all commits

5
src/shims-vue.d.ts vendored
View File

@ -0,0 +1,5 @@
declare module '*.vue' {
import { defineComponent } from 'vue';
const Component: ReturnType<typeof defineComponent>;
export default Component;
}