it-tools/src/plugins/naive.plugin.ts

113 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-03-31 00:33:29 +02:00
import {
create,
NButton,
NConfigProvider,
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,
2022-04-04 00:24:45 +02:00
NLayout,
NLayoutSider,
NMenu,
NMessageProvider,
NPageHeader,
2022-04-05 17:40:35 +02:00
NResult,
2022-04-05 23:23:08 +02:00
NH3,
NEllipsis,
NTag,
2022-04-11 22:47:05 +02:00
NInputGroup,
NInputGroupLabel,
2022-04-12 01:43:49 +02:00
NDivider,
2022-04-14 01:06:06 +02:00
NStatistic,
2022-04-14 02:02:05 +02:00
NTable,
2022-04-14 02:30:25 +02:00
NUploadDragger,
2022-04-14 18:18:15 +02:00
NImage,
2022-04-14 18:45:47 +02:00
NScrollbar,
2022-04-14 22:41:51 +02:00
NGradientText,
2022-05-09 17:41:42 +02:00
NCode,
NDatePicker,
2022-03-31 00:33:29 +02:00
} from 'naive-ui';
const components = [
NDatePicker,
2022-05-09 17:41:42 +02:00
NCode,
2022-04-14 22:41:51 +02:00
NGradientText,
2022-04-14 18:45:47 +02:00
NScrollbar,
2022-04-14 18:18:15 +02:00
NImage,
2022-04-14 02:30:25 +02:00
NUploadDragger,
2022-04-14 02:02:05 +02:00
NTable,
2022-04-14 01:06:06 +02:00
NStatistic,
2022-04-12 01:43:49 +02:00
NDivider,
2022-04-11 22:47:05 +02:00
NInputGroup,
NInputGroupLabel,
2022-04-05 23:23:08 +02:00
NTag,
2022-04-05 17:40:35 +02:00
NResult,
2022-04-05 23:23:08 +02:00
NEllipsis,
2022-04-04 00:24:45 +02:00
NPageHeader,
NMessageProvider,
NLayout,
NLayoutSider,
NMenu,
2022-03-31 00:33:29 +02:00
NDropdown,
NH2,
2022-04-05 23:23:08 +02:00
NH3,
2022-03-31 00:33:29 +02:00
NP,
NAlert,
NTooltip,
NModal,
NEmpty,
NUpload,
NSelect,
NAutoComplete,
NProgress,
NCollapse,
NCollapseItem,
NSlider,
NPopconfirm,
NGrid,
NGridItem,
NButton,
NConfigProvider,
NCard,
NInput,
NColorPicker,
NInputNumber,
NSpace,
NH1,
NForm,
NFormItem,
NTimePicker,
NText,
NIcon,
NSwitch,
NCollapseTransition,
];
export const naive = create({ components });