import { storiesOf } from '@storybook/vue' import helpers from '~/storybook/helpers' import CounterIcon from './CounterIcon.vue' storiesOf('Generic/CounterIcon', module) .addDecorator(helpers.layout) .add('default', () => ({ components: { CounterIcon }, template: ` `, })) .add('high count', () => ({ components: { CounterIcon }, template: ` `, })) .add('danger', () => ({ components: { CounterIcon }, template: ` `, })) .add('count is 0', () => ({ components: { CounterIcon }, template: ` `, }))