3

我需要在左侧边栏中显示副标题,如附图所示。

故事书版本是 5.3.13。

我需要在配置文件中更改任何参数吗?

故事书左侧边栏

4

2 回答 2

2

检查此链接

对于 React 在您./storybook/preview.js添加此代码。

import { addParameters } from '@storybook/react';

addParameters({
  options: {
    /**
     * display the top-level grouping as a "root" in the sidebar
     * @type {Boolean}
     */
    showRoots: true,
  },
});
于 2020-05-07T01:49:09.447 回答
0

对于 Vue

只需为子标题添加相同的路径标题。

文档:链接

例子:

// Button.stories

import { Button as ButtonComponent } from './Button';

export default {

  title: 'Design System/Atoms/Button',
  component: ButtonComponent,
};

});
于 2022-01-24T09:25:28.347 回答