generated from thzxcx/vue3
14 lines
339 B
TypeScript
14 lines
339 B
TypeScript
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 = {}
|