storybook/code/renderers/vue3/template/stories/GlobalUsage.stories.js

30 lines
687 B
JavaScript

import GlobalUsage from './GlobalUsage.vue';
export default {
component: GlobalUsage,
argTypes: {},
render: (args) => ({
// Components used in your story `template` are defined in the `components` object
components: { GlobalUsage },
// The story's `args` need to be mapped into the template through the `setup()` method
setup() {
return { args };
},
// And then the `args` are bound to your component with `v-bind="args"`
template: '<global-usage v-bind="args" />',
}),
};
export const Primary = {
args: {
primary: true,
label: 'Globally Defined',
},
};
export const Secondary = {
args: {
label: 'Globally Defined',
},
};