vue.d.ts 398 B

12345678910
  1. export {}
  2. declare module 'vue' {
  3. export interface GlobalComponents extends JSX.IntrinsicElements {
  4. /** Note: Vue 在 runtime 中将 JSX.IntrinsicElements 通过 index signature 重复声明标签
  5. * 这会导致插件无法正常跳转类型,可以手动覆盖声明标签活得更好的体验,参考如下:
  6. * 'scroll-view': JSX.IntrinsicElements['scroll-view']
  7. */
  8. }
  9. }