generated from thzxcx/vue3
27 lines
578 B
TypeScript
27 lines
578 B
TypeScript
/*
|
|
* @Author: zhaojinfeng 121016171@qq.com
|
|
* @Date: 2023-06-25 15:55:08
|
|
* @LastEditors: zhaojinfeng 121016171@qq.com
|
|
* @LastEditTime: 2023-06-25 19:11:17
|
|
* @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'],
|
|
} satisfies Meta<typeof Prompt>
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Base: Story = {
|
|
args: {
|
|
title: '意见',
|
|
},
|
|
}
|