/* * @Author: zhaojinfeng 121016171@qq.com * @Date: 2023-06-25 15:55:08 * @LastEditors: peerless_hero peerless_hero@outlook.com * @LastEditTime: 2023-07-11 03:48:04 * @FilePath: \uni\stories\Prompt.stories.ts * @Description: * */ import type { Meta, StoryObj } from '@storybook/vue3' import Prompt from '../packages/prompt/index.vue' const meta = { title: '反馈组件/Prompt', component: Prompt, tags: ['autodocs'], args: { show: true, title: '审核意见', placeholder: '审核意见必须填写', confirmText: '提交', textarea: '', }, argTypes: { onConfirm: { action: 'clicked' }, onCancel: { action: 'clicked' }, }, } satisfies Meta export default meta type Story = StoryObj export const Base: Story = { args: { title: '意见', }, }