diff --git a/lib/cli/src/generators/VUE/template-csf/stories/1-Button.stories.js b/lib/cli/src/generators/VUE/template-csf/stories/1-Button.stories.js index f9438eb09aed..270f06bb2a52 100644 --- a/lib/cli/src/generators/VUE/template-csf/stories/1-Button.stories.js +++ b/lib/cli/src/generators/VUE/template-csf/stories/1-Button.stories.js @@ -22,8 +22,23 @@ export const Jsx = () => ({ methods: { action: linkTo('clicked') }, }); -export const Emoji = () => ({ +export const WithSomeEmojiAndAction = () => ({ components: { MyButton }, template: '😀 😎 👍 💯', - methods: { action: action('clicked') }, + methods: { action: action('This was clicked') }, +}); + +WithSomeEmojiAndAction.story = { + name: 'with some emoji and action', + parameters: { notes: 'My notes on a button with emojis' }, +}; + +export const ButtonWithLinkToAnotherStory = () => ({ + components: { MyButton }, + template: 'Go to Welcome Story', + methods: { action: linkTo('Welcome') }, }); + +ButtonWithLinkToAnotherStory.story = { + name: 'button with link to another story', +}; diff --git a/lib/cli/src/generators/VUE/template-csf/stories/Welcome.js b/lib/cli/src/generators/VUE/template-csf/stories/Welcome.js index d1f70b6b310e..80df0039e05c 100644 --- a/lib/cli/src/generators/VUE/template-csf/stories/Welcome.js +++ b/lib/cli/src/generators/VUE/template-csf/stories/Welcome.js @@ -49,7 +49,7 @@ export default { template: `
-

Welcome to STORYBOOK

+

Welcome to storybook

This is a UI component dev environment for your app.

diff --git a/lib/cli/src/generators/VUE/template-mdx/stories/Welcome.js b/lib/cli/src/generators/VUE/template-mdx/stories/Welcome.js index d1f70b6b310e..80df0039e05c 100644 --- a/lib/cli/src/generators/VUE/template-mdx/stories/Welcome.js +++ b/lib/cli/src/generators/VUE/template-mdx/stories/Welcome.js @@ -49,7 +49,7 @@ export default { template: `
-

Welcome to STORYBOOK

+

Welcome to storybook

This is a UI component dev environment for your app.