我正在使用Nuxt,Vuetify和Storyblok。我想从Storyblok显示降价时遇到问题。我尝试使用Markdownit模数。
首先,我使用npm安装它,然后导入模块并与v-html一起使用,但仍然无法获得预期的结果。 我在做什么错了?
result_arr = [r for r in result if not r is None]
npm install markdown-it --save
modules: [
['@nuxtjs/markdownit', {
html: true,
linkify: true,
breaks: true,
}],
['storyblok-nuxt', {
accessToken: process.env.NODE_ENV == "production" ? "ygL5rmck1lGa42Vaai7x1Qtt" : 'iyPj3vEKmPladyz3zeqKuwtt',
cacheProvider: 'memory'
}]
],
结果
<p v-html="content"></p>