feat: 首次提交

This commit is contained in:
2023-06-21 12:04:22 +08:00
commit e2d9a227c0
44 changed files with 11977 additions and 0 deletions

13
ejs/stories.ejs Normal file
View File

@ -0,0 +1,13 @@
import type { Meta, StoryObj } from '@storybook/vue3';
import <%- component %> from '../packages/<%- lowerName %>/index.vue';
const meta = {
title: '某个大类/<%- component %>',
component: <%- component %>,
tags: ['autodocs'],
} satisfies Meta<typeof <%- component %>>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Base: Story = {};