UNPKG

@spaceone/design-system

Version:
30 lines (27 loc) 808 B
import { withKnobs, text } from '@storybook/addon-knobs'; import PVerticalLayout from '@/layouts/vertical-layout/PVerticalLayout.vue'; export default { title: 'Layouts/VerticalLayout', component: PVerticalLayout, decorators: [withKnobs], parameters: { info: { summary: '', components: { PVerticalLayout }, }, }, }; export const verticalLayout = () => ({ components: { PVerticalLayout }, template: ` <div style="width: 100vw; border: 1px solid gray;"> <p-vertical-layout> <template #sidebar> Left Layout </template> <template #default> Right Layout </template> </p-vertical-layout> </div>`, });