文档管理
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.

20 lines
733 B

7 months ago
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 },
]