⬆️ Upgrade: upgrade deps

This commit is contained in:
萌萌哒赫萝
2023-08-27 07:48:08 -07:00
parent e15aa846e5
commit bfbfef17b2
10 changed files with 2531 additions and 486 deletions

View File

@@ -1971,7 +1971,7 @@ async function handleClickFile (item: any) {
const fileUrl = item.url
const res = await axios.get(fileUrl, options)
const content = res.data
markDownContent.value = marked(content)
markDownContent.value = marked.parse(content)
isShowMarkDownDialog.value = true
} catch (error) {
ElMessage.error($T('MANAGE_BUCKET_END_LOADING_MESSAGE_FAIL'))