declare module '*.vue' {
import type { DefineComponent } from 'vue' // The module "../node_modules/vue/dist/vue" does not have an exported member “DefineComponent”.ts(2305)
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '@vue/runtime-core' {
export interface ComponentCustomProperties {
$goto: any
}
}
Why am I receiving this error message? I am unsure of how to resolve it. Can someone help?