16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
import ThSelectTableModal from '../packages/select-table-modal/index.vue'
|
|
|
|
const meta = {
|
|
title: '表单组件/SelectTableModal',
|
|
component: ThSelectTableModal,
|
|
tags: ['autodocs'],
|
|
} satisfies Meta<typeof ThSelectTableModal>
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Base: Story = {
|
|
name: '基本使用',
|
|
}
|