lazy.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. import Vue from 'vue'
  2. import {
  3. Alert,
  4. Avatar,
  5. Badge,
  6. Breadcrumb,
  7. Button,
  8. Card,
  9. Checkbox,
  10. Col,
  11. Collapse,
  12. Comment,
  13. ConfigProvider,
  14. DatePicker,
  15. Descriptions,
  16. Divider,
  17. Drawer,
  18. Dropdown,
  19. Empty,
  20. Form,
  21. Icon,
  22. Input,
  23. InputNumber,
  24. Layout,
  25. List,
  26. Menu,
  27. message,
  28. Modal,
  29. notification,
  30. pageHeader,
  31. Pagination,
  32. Popconfirm,
  33. Popover,
  34. Progress,
  35. Radio,
  36. Result,
  37. Row,
  38. Select,
  39. Skeleton,
  40. Slider,
  41. Space,
  42. Spin,
  43. Statistic,
  44. Steps,
  45. Switch,
  46. Table,
  47. Tabs,
  48. Tooltip,
  49. Transfer,
  50. Upload
  51. } from 'ant-design-vue'
  52. Vue.use(ConfigProvider)
  53. Vue.use(Layout)
  54. Vue.use(Input)
  55. Vue.use(InputNumber)
  56. Vue.use(Button)
  57. Vue.use(Radio)
  58. Vue.use(Checkbox)
  59. Vue.use(Select)
  60. Vue.use(Collapse)
  61. Vue.use(Card)
  62. Vue.use(Form)
  63. Vue.use(Row)
  64. Vue.use(Col)
  65. Vue.use(Modal)
  66. Vue.use(Table)
  67. Vue.use(Tabs)
  68. Vue.use(Icon)
  69. Vue.use(Badge)
  70. Vue.use(Popover)
  71. Vue.use(Dropdown)
  72. Vue.use(List)
  73. Vue.use(Avatar)
  74. Vue.use(Breadcrumb)
  75. Vue.use(Steps)
  76. Vue.use(Spin)
  77. Vue.use(Menu)
  78. Vue.use(Drawer)
  79. Vue.use(Tooltip)
  80. Vue.use(Alert)
  81. Vue.use(Divider)
  82. Vue.use(DatePicker)
  83. Vue.use(Upload)
  84. Vue.use(Progress)
  85. Vue.use(Skeleton)
  86. Vue.use(Popconfirm)
  87. Vue.use(notification)
  88. Vue.use(Empty)
  89. Vue.use(Statistic)
  90. Vue.use(Pagination)
  91. Vue.use(Slider)
  92. Vue.use(Transfer)
  93. Vue.use(Comment)
  94. Vue.use(Descriptions)
  95. Vue.use(Result)
  96. Vue.use(pageHeader)
  97. Vue.use(Switch)
  98. Vue.use(Space)
  99. Vue.prototype.$confirm = Modal.confirm
  100. Vue.prototype.$message = message
  101. Vue.prototype.$notification = notification
  102. Vue.prototype.$info = Modal.info
  103. Vue.prototype.$success = Modal.success
  104. Vue.prototype.$error = Modal.error
  105. Vue.prototype.$warning = Modal.warning