2

我在 Storybook 中记录我的组件。我添加@storybook/addon-docs并在 *.stories.ts 中定义了这样的故事:

export const Button = () => ({
  template: '<button class="button">Delete</button>',
});

带有样式的按钮显示正确,但是当有人单击“显示代码”时,它会显示故事的代码,而不仅仅是模板。

() => ({
  template: '<button class="button button-danger">Delete</button>'
})

是否可以配置“显示代码”显示模板,而不是整个故事?

4

1 回答 1

0

尝试评论,文档来源

//Connect below line from .stories.js
parameters: {
 docs: {
  source: {
    type: 'code'
  }
 }
}
于 2021-06-18T09:16:03.870 回答