UNPKG

vite-plugin-entry-shaking-debugger

Version:
19 lines (13 loc) 323 B
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;