diff options
author | 2022-03-31 00:33:29 +0200 | |
---|---|---|
committer | 2022-03-31 00:33:29 +0200 | |
commit | 64c92a661ccf1fb6a6482c5504db97dbcb003977 (patch) | |
tree | d6c11f07c766ffe72c2e54e802d4f86c33517c2a /src/plugins | |
download | it-tools-64c92a661ccf1fb6a6482c5504db97dbcb003977.tar.gz it-tools-64c92a661ccf1fb6a6482c5504db97dbcb003977.tar.zst it-tools-64c92a661ccf1fb6a6482c5504db97dbcb003977.zip |
chore: first commit
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/naive.plugin.ts | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/src/plugins/naive.plugin.ts b/src/plugins/naive.plugin.ts new file mode 100644 index 0000000..5d36387 --- /dev/null +++ b/src/plugins/naive.plugin.ts @@ -0,0 +1,74 @@ +import { + create, + NButton, + NConfigProvider, + NGlobalStyle, + NCard, + NInput, + NColorPicker, + NInputNumber, + NSpace, + NH1, + NForm, + NFormItem, + NTimePicker, + NText, + NIcon, + NSwitch, + NCollapseTransition, + NGrid, + NGridItem, + NPopconfirm, + NSlider, + NCollapse, + NCollapseItem, + NProgress, + NAutoComplete, + NSelect, + NUpload, + NEmpty, + NModal, + NTooltip, + NAlert, + NP, + NH2, + NDropdown, +} from 'naive-ui'; + +const components = [ + NDropdown, + NH2, + NP, + NAlert, + NTooltip, + NModal, + NEmpty, + NUpload, + NSelect, + NAutoComplete, + NProgress, + NCollapse, + NCollapseItem, + NSlider, + NPopconfirm, + NGrid, + NGridItem, + NButton, + NConfigProvider, + NGlobalStyle, + NCard, + NInput, + NColorPicker, + NInputNumber, + NSpace, + NH1, + NForm, + NFormItem, + NTimePicker, + NText, + NIcon, + NSwitch, + NCollapseTransition, +]; + +export const naive = create({ components }); |