fbredius/storybook

View on GitHub
examples/vue-kitchen-sink/src/stories/components/info-button.stories.js

Summary

Maintainability
A
0 mins
Test Coverage
import InfoButton from './InfoButton.vue';

export default {
  title: 'InfoButton',
  component: InfoButton,
};

export const Simple = () => ({
  components: { InfoButton },
  template: '<info-button label="I\'m a button!"/>',
});