import type { Meta, StoryObj } from '@storybook/vue3' import StoryComponent from './Alert.vue' const meta: Meta = { title: 'Ui/Alert', component: StoryComponent, render: (args) => ({ components: { StoryComponent }, setup() { return { args } }, template: '' }) } export default meta type Story = StoryObj export const Primary: Story = { args: {} }