I apply markdown in nuxt vue this way.
<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>
in doc.md
file, I need add a image, but how can I resolve the image path?
http://localhost:3000/guide/~@/assets/images/create.jpg 404 (Not Found)

now the problem is