13 lines
378 B
TypeScript
13 lines
378 B
TypeScript
// from https://stackoverflow.com/questions/64213461/vuejs-typescript-cannot-find-module-components-navigation-or-its-correspon
|
|
// declare module "*.vue" {
|
|
// import Vue from 'vue';
|
|
// export default Vue;
|
|
// }
|
|
|
|
// for Vue 3
|
|
declare module '*.vue' {
|
|
import type { DefineComponent } from 'vue';
|
|
const component: DefineComponent<{}, {}, any>;
|
|
export default component;
|
|
}
|