| 123456789101112131415161718192021222324252627282930 |
- import {
- create,
- NConfigProvider,
- NNotificationProvider,
- NProgress,
- NTable,
- NDataTable,
- NPagination,
- NButton,
- NSelect,
- NCheckboxGroup,
- NCheckbox
- } from 'naive-ui'
- const naive = create({
- components: [
- NConfigProvider,
- NNotificationProvider,
- NProgress,
- NTable,
- NDataTable,
- NPagination,
- NButton,
- NSelect,
- NCheckboxGroup,
- NCheckbox
- ]
- })
- export default naive
|