vue2-shim.d.ts 360 B

123456789101112
  1. /* eslint-disable import/export */
  2. // workaround for Volar to infer the ref type in <template>
  3. // https://github.com/johnsoncodehk/volar/issues/404
  4. declare module "@vue/runtime-dom" {
  5. export * from "@vue/runtime-dom/dist/runtime-dom"
  6. export {
  7. defineComponent,
  8. PropType,
  9. ObjectDirective,
  10. FunctionDirective,
  11. } from "@vue/composition-api"
  12. }