我以这种方式在 nuxt vue 中应用降价。
<template>
<div class="doc-container">
<div v-html="doc"/>
</div>
</template>
<script>
import doc from './doc.md'
export default {
name: 'doc',
data() {
return {
doc:doc
}
},
}
</script>
在doc.md
文件中,我需要添加图像,但是如何解析图像路径?
http://localhost:3000/guide/~@/assets/images/create.jpg 404 (Not Found)
![image](~@/assets/images/create.jpg)
现在的问题是