Skip to content

Commit 9b00ed3

Browse files
committed
docs(ui): add stories for blog index page #2601
1 parent b8abae0 commit 9b00ed3

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

app/pages/blog/index.stories.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import Blog from './index.vue'
2+
import type { Meta, StoryObj } from '@storybook-vue/nuxt'
3+
import { pageDecorator } from '../../../.storybook/decorators'
4+
5+
const meta = {
6+
component: Blog,
7+
parameters: {
8+
layout: 'fullscreen',
9+
},
10+
decorators: [pageDecorator],
11+
} satisfies Meta<typeof Blog>
12+
13+
export default meta
14+
type Story = StoryObj<typeof meta>
15+
16+
export const Default: Story = {}

0 commit comments

Comments
 (0)