forked from qiushanhe/dm-manage-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
916 B
28 lines
916 B
import Vue from "vue";
|
|
// 分页组件
|
|
import Pagination from "@/components/Pagination";
|
|
// 自定义表格工具组件
|
|
import RightToolbar from "@/components/RightToolbar";
|
|
// 富文本组件
|
|
import Editor from "@/components/Editor";
|
|
// 文件上传组件
|
|
import FileUpload from "@/components/FileUpload";
|
|
// 图片上传组件
|
|
import ImageUpload from "@/components/ImageUpload";
|
|
// 图片预览组件
|
|
import ImagePreview from "@/components/ImagePreview";
|
|
// 字典标签组件
|
|
import DictTag from "@/components/DictTag";
|
|
// 字典数据组件
|
|
import DictData from '@/components/DictData'
|
|
|
|
// 全局组件挂载
|
|
Vue.component("DictTag", DictTag);
|
|
Vue.component("Pagination", Pagination);
|
|
Vue.component("RightToolbar", RightToolbar);
|
|
Vue.component("Editor", Editor);
|
|
Vue.component("FileUpload", FileUpload);
|
|
Vue.component("ImageUpload", ImageUpload);
|
|
Vue.component("ImagePreview", ImagePreview);
|
|
|
|
DictData.install()
|
|
|