We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8abae0 commit 9b00ed3Copy full SHA for 9b00ed3
1 file changed
app/pages/blog/index.stories.ts
@@ -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