mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-21 05:02:39 +08:00
14 lines
226 B
JavaScript
14 lines
226 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 = {
|
|
docs: {
|
|
iframeHeight: '60px',
|
|
},
|
|
};
|