native-plugin.ts 421 B

123456789101112131415161718192021222324252627282930
  1. import {
  2. create,
  3. NConfigProvider,
  4. NNotificationProvider,
  5. NProgress,
  6. NTable,
  7. NDataTable,
  8. NPagination,
  9. NButton,
  10. NSelect,
  11. NCheckboxGroup,
  12. NCheckbox
  13. } from 'naive-ui'
  14. const naive = create({
  15. components: [
  16. NConfigProvider,
  17. NNotificationProvider,
  18. NProgress,
  19. NTable,
  20. NDataTable,
  21. NPagination,
  22. NButton,
  23. NSelect,
  24. NCheckboxGroup,
  25. NCheckbox
  26. ]
  27. })
  28. export default naive