feat: 卡片等组件

This commit is contained in:
2023-07-10 19:26:19 +08:00
parent ec2f619775
commit d1e7778644
28 changed files with 1108 additions and 12 deletions

View File

@ -0,0 +1,13 @@
import type { Meta, StoryObj } from '@storybook/vue3'
import CardSubtitle from '../packages/card-subtitle/index.vue'
const meta = {
title: '卡片/CardSubtitle',
component: CardSubtitle,
tags: ['autodocs'],
} satisfies Meta<typeof CardSubtitle>
export default meta
type Story = StoryObj<typeof meta>
export const Base: Story = {}