20 lines
563 B
TypeScript
20 lines
563 B
TypeScript
import type { Meta, StoryObj } from "@storybook/vue3";
|
|
import ContactCollaborativeEditor from "./ContactCollaborativeEditor.client.vue";
|
|
|
|
const meta: Meta<typeof ContactCollaborativeEditor> = {
|
|
title: "Components/ContactCollaborativeEditor",
|
|
component: ContactCollaborativeEditor,
|
|
args: {
|
|
modelValue: "<p>Client summary draft...</p>",
|
|
room: "storybook-contact-editor-room",
|
|
placeholder: "Type here...",
|
|
plain: false,
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof ContactCollaborativeEditor>;
|
|
|
|
export const Default: Story = {};
|