mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-23 05:02:10 +08:00
15 lines
249 B
JavaScript
15 lines
249 B
JavaScript
import Vue from 'vue';
|
|
import Vuex from 'vuex';
|
|
|
|
import MyButton from '../src/stories/Button.vue';
|
|
|
|
Vue.component('my-button', MyButton);
|
|
Vue.use(Vuex);
|
|
|
|
export const parameters = {
|
|
passArgsFirst: true,
|
|
docs: {
|
|
iframeHeight: '60px',
|
|
},
|
|
};
|