vite-plugin-entry-shaking-debugger
Version:
Debugger for vite-plugin-entry-shaking
20 lines (14 loc) • 342 B
text/typescript
import type { Meta, StoryObj } from '@storybook/vue3';
import Panel from './Panel.vue';
const meta = {
component: Panel,
title: 'Views/Panel',
tags: ['autodocs'],
} satisfies Meta<typeof Panel>;
type Story = StoryObj<typeof meta>;
export const Simple: Story = {
args: {
content: 'Textual badge',
},
};
export default meta;