index.ts 334 B

12345678910111213
  1. // Load on demand
  2. import type { App } from 'vue';
  3. import { Form, Input, Row, Col } from 'ant-design-vue';
  4. import 'ant-design-vue/dist/antd.less';
  5. import './spin';
  6. export function setupAntd(app: App<Element>) {
  7. // Here are the components required before registering and logging in
  8. app.use(Form).use(Input).use(Row).use(Col);
  9. }