| | |
| | | // 富文本组件 |
| | | import Editor from "@/components/Editor"; |
| | | // 文件上传组件 |
| | | import FileUpload from "@/components/FileUpload"; |
| | | import FileUpload from "@/components/AttachmentUpload/file"; |
| | | // 图片上传组件 |
| | | import ImageUpload from "@/components/ImageUpload"; |
| | | import ImageUpload from "@/components/AttachmentUpload/image"; |
| | | // 图片预览组件 |
| | | import ImagePreview from "@/components/ImagePreview"; |
| | | import ImagePreview from "@/components/AttachmentPreview/image"; |
| | | // 附件弹窗组件 |
| | | import FileListDialog from "@/components/Dialog/FileList.vue"; |
| | | // 字典标签组件 |
| | | import DictTag from "@/components/DictTag"; |
| | | // 表格组件 |
| | | import PIMTable from "@/components/PIMTable/PIMTable.vue"; |
| | | // 页面头部组件 |
| | | import PageHeader from "@/components/PageHeader/index.vue"; |
| | | |
| | | import { getToken } from "@/utils/auth"; |
| | | import { |
| | |
| | | app.component("FileUpload", FileUpload); |
| | | app.component("ImageUpload", ImageUpload); |
| | | app.component("ImagePreview", ImagePreview); |
| | | app.component("FileListDialog", FileListDialog); |
| | | app.component("RightToolbar", RightToolbar); |
| | | app.component("Editor", Editor); |
| | | app.component("PIMTable", PIMTable); |
| | | app.component("PageHeader", PageHeader); |
| | | |
| | | app.use(router); |
| | | app.use(store); |