有没有一种方法可以在nuxt js中编写自定义指令,该指令将同时适用于ssr和前端(甚至仅适用于ssr)?
我在以下文档中尝试过:https : //nuxtjs.org/api/configuration-render#bundleRenderer
所以我添加了以下代码:
module.exports = {
render: {
bundleRenderer: {
directives: {
custom1: function (el, dir) {
// something ...
}
}
}
}
}
到nuxt.config.js
然后在模板中使用它为:
<component v-custom1></component>
但它不起作用,只会引发前端错误
[Vue警告]:无法解析指令:custom1
而且,即使在服务器端,它似乎也不起作用。
感谢您的任何建议。
nuxt.config.js
page.vue
服务器的html结果