/* eslint-disable import/no-extraneous-dependencies */ import { storiesOf } from '@storybook/vue'; import { withKnobs } from '@storybook/addon-knobs'; import positiveIcon from '@/assets/svg/positive.svg'; const stories = storiesOf('Buttons', module); stories.addDecorator(withKnobs); stories .add('all', () => ({ components: { }, data () { return { icon: positiveIcon, }; }, template: `

Button







Button with Icon




`, })) .add('dropdowns', () => ({ components: { }, data () { return { items: ['one', 'two', 'three'], }; }, template: `

Dropdowns

{{ item }}

Button



`, }));