generated from thzxcx/vue3
14 lines
370 B
Plaintext
14 lines
370 B
Plaintext
import type { Meta, StoryObj } from '@storybook/vue3'
|
|
import Th<%- component %> from '../packages/<%- lowerName %>/index.vue'
|
|
|
|
const meta = {
|
|
title: '某个大类/<%- component %>',
|
|
component: Th<%- component %>,
|
|
tags: ['autodocs'],
|
|
} satisfies Meta<typeof Th<%- component %>>
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Base: Story = {}
|