Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/components/Button/Base.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ import Component from './Base.vue'

const meta = {
component: Component,
tags: ['autodocs'],
} satisfies Meta<typeof Component>

export default meta
type Story = StoryObj<typeof meta>

export const Primary: Story = {
tags: ['!dev'],
args: {
default: 'Primary Button',
},
Expand Down
1 change: 1 addition & 0 deletions app/components/Input/Base.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Component from './Base.vue'

const meta = {
component: Component,
tags: ['autodocs'],
argTypes: {
disabled: { control: 'boolean' },
size: {
Expand Down
1 change: 1 addition & 0 deletions app/components/Link/Link.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import LinkBase from './Base.vue'

const meta = {
component: LinkBase,
tags: ['autodocs'],
args: {
to: '/',
default: 'Click me',
Expand Down
Loading