feat: 删除 node_modules 文件夹非常耗时解决办法
parent
009a725fdf
commit
6825193266
@ -0,0 +1,18 @@
|
||||
<template>
|
||||
<div
|
||||
class="markdown-body"
|
||||
v-html="htmlStr"
|
||||
/>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { marked } from 'marked';
|
||||
import { getMarkdownContent } from '@/utils/tools';
|
||||
|
||||
const htmlStr = ref('');
|
||||
|
||||
getMarkdownContent('./md/deletdNodeModules.md').then((res) => {
|
||||
htmlStr.value = marked(res);
|
||||
});
|
||||
</script>
|
||||
Loading…
Reference in New Issue