You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
import Vue from "vue";
|
|
|
|
|
import {
|
|
|
|
|
Layout,
|
|
|
|
|
Input,
|
|
|
|
|
Tabs,
|
|
|
|
|
Table,
|
|
|
|
|
Pagination,
|
|
|
|
|
Menu,
|
|
|
|
|
Form,
|
|
|
|
|
Button,
|
|
|
|
|
Breadcrumb,
|
|
|
|
|
Icon,
|
|
|
|
|
Tree,
|
|
|
|
|
message,
|
|
|
|
|
result,
|
|
|
|
|
Modal,
|
|
|
|
|
Popover,
|
|
|
|
|
Row,
|
|
|
|
|
Col,
|
|
|
|
|
Select,
|
|
|
|
|
Popconfirm,
|
|
|
|
|
Tooltip,
|
|
|
|
|
Drawer,
|
|
|
|
|
Divider
|
|
|
|
|
} from "ant-design-vue";
|
|
|
|
|
Vue.use(Layout);
|
|
|
|
|
Vue.use(Input);
|
|
|
|
|
Vue.use(Tabs);
|
|
|
|
|
Vue.use(Table);
|
|
|
|
|
Vue.use(Pagination);
|
|
|
|
|
Vue.use(Menu);
|
|
|
|
|
Vue.use(Form);
|
|
|
|
|
Vue.use(Button);
|
|
|
|
|
Vue.use(Breadcrumb);
|
|
|
|
|
Vue.use(Icon);
|
|
|
|
|
Vue.use(Tree);
|
|
|
|
|
Vue.use(result);
|
|
|
|
|
Vue.use(Modal);
|
|
|
|
|
Vue.use(Popover);
|
|
|
|
|
Vue.use(Row);
|
|
|
|
|
Vue.use(Col);
|
|
|
|
|
Vue.use(Select);
|
|
|
|
|
Vue.use(Popconfirm)
|
|
|
|
|
Vue.use(Tooltip)
|
|
|
|
|
Vue.use(Drawer)
|
|
|
|
|
Vue.use(Divider)
|
|
|
|
|
Vue.prototype.$message = message;
|
|
|
|
|
Vue.prototype.$info = Modal.info;
|
|
|
|
|
Vue.prototype.$success = Modal.success;
|
|
|
|
|
Vue.prototype.$confirm = Modal.confirm;
|
|
|
|
|
Vue.prototype.$error = Modal.error;
|