chore: rename Application to app

This commit is contained in:
vben
2020-11-18 22:52:13 +08:00
parent 46e0875374
commit 99303a9987
9 changed files with 15 additions and 93 deletions

View File

@@ -1,4 +1,6 @@
import { Component } from 'vue';
import type { ComponentType } from './types/index';
/**
* Component list, register here to use it in the form
*/
@@ -17,8 +19,6 @@ import {
} from 'ant-design-vue';
import RadioButtonGroup from './components/RadioButtonGroup.vue';
import { ComponentType } from './types/index';
const componentMap = new Map<ComponentType, any>();
componentMap.set('Input', Input);

View File

@@ -108,4 +108,5 @@ export type ComponentType =
| 'ImageUpload'
| 'Switch'
| 'StrengthMeter'
| 'Upload'
| 'Render';