作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在进行一个带有故事书的项目,我希望我的故事能够更改背景或放置任何背景,因为我只需要不同颜色的背景,但我不能像文档中所说的那样放置背景:
https://storybook.js.org/docs/react/essentials/backgrounds
export default {
title: 'Button',
parameters: {
backgrounds: {
default: 'twitter',
values: [
{ name: 'twitter', value: '#00aced' },
{ name: 'facebook', value: '#3b5998' },
],
},
},
};
我的代码是这样的:
export default {
title: "Atoms/Example",
component,
parameters: {
backgrounds: {
default: "black",
values: [
{ name: "black", value: "#000000" },
{ name: "white", value: "#ffffff" }
]
}
},
argTypes: {
is: {
control: {
type: "select",
options: [25, 33, 50, 75, 100]
}
}
}
}
但我的代码根本不起作用,从文档中看到一切都是正确的。
最佳答案
确保您有 @storybook/addon-backgrounds
安装在.storybook/main.js
文件确保它在你的插件中:addons: ['@storybook/addon-backgrounds']
注意确保其:addons: ['@storybook/addon-backgrounds']
并不是addons: ['@storybook/addon-backgrounds/register']
使用 register
是旧方法,会阻止它正常工作
关于javascript - 带有背景参数的故事书的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66178960/
我是一名优秀的程序员,十分优秀!