13 lines
360 B
TypeScript
13 lines
360 B
TypeScript
/* eslint-disable import/export */
|
|
// workaround for Volar to infer the ref type in <template>
|
|
// https://github.com/johnsoncodehk/volar/issues/404
|
|
declare module "@vue/runtime-dom" {
|
|
export * from "@vue/runtime-dom/dist/runtime-dom"
|
|
export {
|
|
defineComponent,
|
|
PropType,
|
|
ObjectDirective,
|
|
FunctionDirective,
|
|
} from "@vue/composition-api"
|
|
}
|