vben
2021-02-17 4d7001bbcf3ff6e62deb967cb1c15b443b8aaff4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { RouterLink, RouterView } from 'vue-router';
 
import { Button } from '/@/components/Button';
import { Col, Row } from 'ant-design-vue';
 
declare global {
  interface __VLS_GlobalComponents {
    RouterLink: typeof RouterLink;
    RouterView: typeof RouterView;
    'a-button': typeof Button;
    'a-col': typeof Col;
    'a-row': typeof Row;
  }
}