feat: 下载组件

This commit is contained in:
2023-07-21 03:02:04 +08:00
parent c628d7de06
commit 22a3951222
4 changed files with 123 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import type { Meta, StoryObj } from '@storybook/vue3'
import ThDownloadLink from '../packages/download-link/index.vue'
const meta = {
title: '数据展示/DownloadLink',
component: ThDownloadLink,
tags: ['autodocs'],
} satisfies Meta<typeof ThDownloadLink>
export default meta
type Story = StoryObj<typeof meta>
export const Base: Story = {
name: '基本使用',
}