import ItSuccessAlert from "@/components/ui/ItSuccessAlert.vue"; import type { Meta, StoryObj } from "@storybook/vue3"; // More on how to set up stories at: https://storybook.js.org/docs/7.0/vue/writing-stories/introduction const meta: Meta = { title: "VBV/SuccessAlert", component: ItSuccessAlert, // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/7.0/vue/writing-docs/docs-page tags: ["autodocs"], }; export default meta; type Story = StoryObj; export const Default: Story = { args: { text: "Deiner Praxisauftrag wurde abgegeben", }, };