我将vuetify
与storybook
一起使用。
当我尝试查看我的组件时(仅在故事书中-它们在我的vue应用中可以正常工作),我收到此错误:
[Vue警告]:无法安装组件:模板或渲染函数未安装 定义。
我的故事书webpack.config.js
文件如下:
const VuetifyLoaderPlugin = require('vuetify-loader/lib/plugin')
module.exports = {
plugins: [
new VuetifyLoaderPlugin()
],
module: {
rules: [
{
test: /\.styl$/,
loader: ['style-loader', 'css-loader', 'stylus-loader']
},
{
test: /\.vue$/,
loader: 'vue-loader'
},
]
}
}
我在这里想念什么?
答案 0 :(得分:1)
只需尝试npm add -D @andoshin11/storybook-vue3
,它就会起作用:)
答案 1 :(得分:0)
开发依赖项中已经存在“ @ storybook / vue”。