diff options
author | 2022-08-17 14:36:52 +0200 | |
---|---|---|
committer | 2022-08-19 17:40:00 +0200 | |
commit | 164e32b4428b8dfaaddcefa06b767a8af94573a9 (patch) | |
tree | 104babab05662dbcb89e6f9e06ebc19a60957ecd /src/plugins/naive.plugin.ts | |
parent | 49755909bdaea9399e51b67fbd1a6d071acd3182 (diff) | |
download | it-tools-164e32b4428b8dfaaddcefa06b767a8af94573a9.tar.gz it-tools-164e32b4428b8dfaaddcefa06b767a8af94573a9.tar.zst it-tools-164e32b4428b8dfaaddcefa06b767a8af94573a9.zip |
feat(new-tool): meta tag generator
Diffstat (limited to 'src/plugins/naive.plugin.ts')
-rw-r--r-- | src/plugins/naive.plugin.ts | 72 |
1 files changed, 37 insertions, 35 deletions
diff --git a/src/plugins/naive.plugin.ts b/src/plugins/naive.plugin.ts index 4662798..981d787 100644 --- a/src/plugins/naive.plugin.ts +++ b/src/plugins/naive.plugin.ts @@ -1,60 +1,62 @@ import { create, + NAlert, + NAutoComplete, NButton, - NConfigProvider, NCard, - NInput, + NCode, + NCollapse, + NCollapseItem, + NCollapseTransition, NColorPicker, - NInputNumber, - NSpace, - NH1, + NConfigProvider, + NDatePicker, + NDivider, + NDropdown, + NDynamicInput, + NEllipsis, + NEmpty, NForm, NFormItem, - NTimePicker, - NText, - NIcon, - NSwitch, - NCollapseTransition, + NGradientText, NGrid, NGridItem, - NPopconfirm, - NSlider, - NCollapse, - NCollapseItem, - NProgress, - NAutoComplete, - NSelect, - NUpload, - NEmpty, - NModal, - NTooltip, - NAlert, - NP, + NH1, NH2, - NDropdown, + NH3, + NIcon, + NImage, + NInput, + NInputGroup, + NInputGroupLabel, + NInputNumber, NLayout, NLayoutSider, NMenu, NMessageProvider, + NModal, + NP, NPageHeader, + NPopconfirm, + NProgress, NResult, - NH3, - NEllipsis, - NTag, - NInputGroup, - NInputGroupLabel, - NDivider, + NScrollbar, + NSelect, + NSlider, + NSpace, NStatistic, + NSwitch, NTable, + NTag, + NText, + NTimePicker, + NTooltip, + NUpload, NUploadDragger, - NImage, - NScrollbar, - NGradientText, - NCode, - NDatePicker, } from 'naive-ui'; const components = [ + NDynamicInput, NDatePicker, NCode, NGradientText, |