vite-plugin-entry-shaking-debugger
Version:
Debugger for vite-plugin-entry-shaking
19 lines (13 loc) • 323 B
text/typescript
import type { Meta, StoryObj } from '@storybook/vue3';
import Base from './Base.vue';
const meta = {
component: Base,
title: 'Layout/Base',
tags: ['autodocs'],
decorators: [],
} satisfies Meta<typeof Base>;
type Story = StoryObj<typeof meta>;
export const Simple: Story = {
args: {},
};
export default meta;