16 lines
376 B
TypeScript
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: '基本使用',
|
|
}
|