```md import { Meta, Story } from '@storybook/addon-docs'; import TodoItem from './TodoItem.vue'; import fetch from 'node-fetch'; ({ todo: await ( await fetch("https://jsonplaceholder.typicode.com/todos/1") ).json(), }), ]}> {(args, { loaded: { todo } }) => ({ components: { TodoItem }, setup() { return { args, todo: todo }; }, template: ``, })} ```