generated from thzxcx/vue3
14 lines
319 B
TypeScript
14 lines
319 B
TypeScript
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
import CardItem from '../packages/card-item/index.vue'
|
|
|
|
const meta = {
|
|
title: '卡片/CardItem',
|
|
component: CardItem,
|
|
tags: ['autodocs'],
|
|
} satisfies Meta<typeof CardItem>
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Base: Story = {}
|