import Folder from '@/assets/image/dashboard/file/folder.svg' import Upload from '@/assets/image/dashboard/file/upload.svg' import Document from '@/assets/image/dashboard/file/document.svg' export enum floeType { folder, file, } export const breadcrumbList = ref([{ name: '全部文件', id: 0 }]) export const fileDropdownMenu = [ { command: 'open', label: '打开', icon: '' }, { command: 'rename', label: '重命名', icon: '' }, { command: 'delete', label: '删除', icon: '' }, ] export const operationDropdownMenu = [ { command: 'newFolder', label: '新建文件夹', icon: Folder }, // { command: 'upload', label: '上传', icon: Upload }, { command: 'newMarkdown', label: '新建文档', icon: Document }, ]