import { ElPopconfirm, ElButton } from 'element-plus'; import type { StoryObj, Meta } from "@storybook/vue3"; const meta: Meta = { title: 'Feedback/Popconfirm 气泡确认框', } export default meta; type Story = StoryObj; export const Overview:Story = { render: (args) => ({ components: { ElPopconfirm, ElButton, }, setup() { return { args }; }, template: ` `, }) };