mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Merge pull request #4285 from yaodingyd/patch-1
fix #2384: support string-only component for vue
This commit is contained in:
commit
c845723f63
@ -13,7 +13,12 @@ const decorateStory = (getStory, decorators) =>
|
|||||||
decorators.reduce(
|
decorators.reduce(
|
||||||
(decorated, decorator) => context => {
|
(decorated, decorator) => context => {
|
||||||
const story = () => decorated(context);
|
const story = () => decorated(context);
|
||||||
const decoratedStory = decorator(story, context);
|
let decoratedStory = decorator(story, context);
|
||||||
|
|
||||||
|
if (typeof decoratedStory === 'string') {
|
||||||
|
decoratedStory = { template: decoratedStory };
|
||||||
|
}
|
||||||
|
|
||||||
decoratedStory.components = decoratedStory.components || {};
|
decoratedStory.components = decoratedStory.components || {};
|
||||||
decoratedStory.components.story = createWrapperComponent(story());
|
decoratedStory.components.story = createWrapperComponent(story());
|
||||||
return decoratedStory;
|
return decoratedStory;
|
||||||
|
@ -0,0 +1,10 @@
|
|||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`Storyshots Core|Template string only 1`] = `
|
||||||
|
<button
|
||||||
|
class="button"
|
||||||
|
style="color: rgb(66, 185, 131); border-color: #42b983;"
|
||||||
|
>
|
||||||
|
A Button with square edges!
|
||||||
|
</button>
|
||||||
|
`;
|
@ -0,0 +1,6 @@
|
|||||||
|
import { storiesOf } from '@storybook/vue';
|
||||||
|
|
||||||
|
storiesOf('Core|Template', module).add(
|
||||||
|
'string only',
|
||||||
|
() => '<my-button :rounded="false">A Button with square edges</my-button>'
|
||||||
|
);
|
Loading…
x
Reference in New Issue
Block a user