Nuxt/examples/storybook/stories/Welcome.story.js
2018-02-06 03:06:45 +00:00

16 lines
469 B
JavaScript

import { storiesOf } from '@storybook/vue'
// import { action } from '@storybook/addon-actions'
import { linkTo } from '@storybook/addon-links'
import Welcome from '~/components/Welcome.vue'
storiesOf('Welcome', module).add('to Storybook', () => ({
render: h => h(Welcome)
}))
.add('with Link To Button', () => ({
components: { Welcome },
template: '<div align=center><welcome :showApp="action" /></div>',
methods: { action: linkTo('Button') }
}))