mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
27 lines
607 B
Plaintext
27 lines
607 B
Plaintext
```js
|
|
// TodoItem.stories.js
|
|
|
|
import fetch from 'node-fetch';
|
|
|
|
import TodoItem from './TodoItem.svelte';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/svelte/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Examples/Loader',
|
|
component: TodoItem,
|
|
};
|
|
|
|
export const Primary = (args, { loaded: { todo } }) => ({
|
|
Component: TodoItem,
|
|
props: { ...args, ...todo },
|
|
});
|
|
|
|
Primary.loaders = [
|
|
async () => ({
|
|
todo: await (await fetch('https://jsonplaceholder.typicode.com/todos/1')).json(),
|
|
}),
|
|
];
|
|
``` |