mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
33 lines
787 B
Plaintext
33 lines
787 B
Plaintext
```md
|
|
<!-- TodoItem.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import TodoItem from './TodoItem.vue';
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
<Meta title="Examples/Loader" component={TodoItem} />
|
|
|
|
<!--
|
|
👇 Render functions are a framework specific feature to allow you control on how the component renders.
|
|
See https://storybook.js.org/docs/7.0/vue/api/csf
|
|
to learn how to use render functions.
|
|
-->
|
|
<Story
|
|
name="Primary"
|
|
loaders={[
|
|
async () => ({
|
|
todo: await (
|
|
await fetch('https://jsonplaceholder.typicode.com/todos/1')
|
|
).json(),
|
|
}),
|
|
]}>
|
|
render={(args, { loaded: { todo } }) => ({
|
|
components: { TodoItem },
|
|
setup() {
|
|
return { args, todo: todo };
|
|
},
|
|
template: '<TodoItem :todo="todo" />',
|
|
})} />
|
|
``` |