Update vetur

This commit is contained in:
syuilo
2020-12-11 21:43:28 +09:00
parent 6848f05ea5
commit 629991443a
15 changed files with 70 additions and 29 deletions

View File

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