import type { Meta, StoryObj } from '@storybook/vue3-vite' import SmartClickable from '../../components/base/SmartClickable.vue' const meta = { title: 'Base/SmartClickable', component: SmartClickable, render: (args) => ({ components: { SmartClickable }, setup() { return { args } }, template: /*html*/ ` Clickable Card The entire card is clickable `, }), } satisfies Meta export default meta type Story = StoryObj export const Default: Story = {}
The entire card is clickable