注意:正在开发中
Storybook 附加组件 Tailwind Dark
一个用于切换 Tailwind 模式(选择器)的附加组件,适用于 storybook v8
安装
首先,安装软件包。
npm install --save-dev storybook-addon-tailwind-dark
然后,在 .storybook/main.js
中将其注册为附加组件。
// .storybook/main.ts
// Replace your-framework with the framework you are using (e.g., react-webpack5, vue3-vite)
import type { StorybookConfig } from '@storybook/react';
const config: StorybookConfig = {
// ...rest of config
addons: [
'@storybook/addon-essentials',
'tailwind-dark-mode', // 👈 register the addon here
],
};
export default config;