feat: 组件

This commit is contained in:
2023-07-18 22:06:20 +08:00
parent bb673dfd8a
commit 30a7f03650
14 changed files with 613 additions and 0 deletions

View File

@ -0,0 +1,13 @@
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 = {}