mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:51:05 +08:00
Address comments
- Add missing snippet
This commit is contained in:
parent
b97d94e005
commit
45d053b1bc
26
docs/snippets/web-components/loader-story.ts.mdx
Normal file
26
docs/snippets/web-components/loader-story.ts.mdx
Normal file
@ -0,0 +1,26 @@
|
||||
```ts
|
||||
// TodoItem.stories.ts
|
||||
|
||||
import type { Meta, StoryObj } from '@storybook/web-components';
|
||||
|
||||
import fetch from 'node-fetch';
|
||||
|
||||
const meta: Meta = {
|
||||
title: 'Examples/Loader'
|
||||
component: 'demo-todo-item',
|
||||
render: (args, { loaded: { todo } }) => TodoItem({...args, ...todo}),
|
||||
};
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj;
|
||||
|
||||
export const Primary: Story = {
|
||||
loaders: [
|
||||
async () => ({
|
||||
todo: await (
|
||||
await fetch('https://jsonplaceholder.typicode.com/todos/1')
|
||||
).json(),
|
||||
}),
|
||||
],
|
||||
};
|
||||
```
|
@ -5,12 +5,6 @@ import { LitElement, html } from 'lit-element';
|
||||
|
||||
@customElement('demo-document-screen')
|
||||
class DocumentScreen extends LitElement {
|
||||
static get properties() {
|
||||
return {
|
||||
data: { type: Object },
|
||||
}
|
||||
}
|
||||
|
||||
@property({ type: Object })
|
||||
data: {
|
||||
user: Record<string, unknown>;
|
||||
|
@ -22,6 +22,7 @@ Loaders are helpful when you need to load story data externally (e.g., from a re
|
||||
'vue/loader-story.3.js.mdx',
|
||||
'vue/loader-story.ts-3.ts.mdx',
|
||||
'angular/loader-story.ts.mdx',
|
||||
'web-components/loader-story.js.mdx',
|
||||
'web-components/loader-story.ts.mdx',
|
||||
'svelte/loader-story.js.mdx',
|
||||
]}
|
||||
|
Loading…
x
Reference in New Issue
Block a user