index.js 952 Bytes
import Vue from 'vue'
import {
  Row,
  Col,
  menu,
  dropdown,
  Table,
  message,
  pagination,
  FormModel,
  Select,
  DatePicker,
  Input,
  InputNumber,
  Checkbox,
  Radio,
  upload,
  Button,
  notification,
  popconfirm,
  Modal,
  modal,
  Spin,
  Collapse,
  Tabs,
  Tooltip,
  Popover,
  Empty
} from 'ant-design-vue'

export default () => {
  let els = [
    Row,
    Col,
    menu,
    dropdown,
    Table,
    message,
    pagination,
    FormModel,
    Select,
    DatePicker,
    Input,
    InputNumber,
    Checkbox,
    Radio,
    upload,
    Button,
    notification,
    popconfirm,
    Modal,
    modal,
    Spin,
    Collapse,
    Tabs,
    Tooltip,
    Popover,
    Empty
  ]
  // 注册
  els.forEach((item) => {
    Vue.use(item)
  })
  // 全局提示
  Vue.prototype.$msg = notification
  Vue.prototype.$message = message
  Vue.prototype.$modal = Modal
}