Files
vue3/stories/DownloadLink.stories.ts
2023-07-21 03:02:04 +08:00

16 lines
376 B
TypeScript

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: '基本使用',
}