13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import { Meta, Story } from '@storybook/vue3';
|
|
import split from './split.vue';
|
|
const meta = {
|
|
title: 'components/form/split',
|
|
component: split,
|
|
};
|
|
export const Default = {
|
|
components: {
|
|
split,
|
|
},
|
|
template: '<split />',
|
|
};
|
|
export default meta;
|