blob: e2c39defdc3a1eef7c87d578f264095e222792dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import { storiesOf } from '@storybook/vue'
import { postLink } from '../PostLink.stories'
import PurePostList from './PurePostList'
export const posts = Array(5).fill(postLink)
storiesOf('Posts/PurePostList', module)
.add('default', () => {
return {
components: { PurePostList },
template: `<pure-post-list :posts="posts"/>`,
data: () => ({ posts })
}
})
.add('loading', () => {
return {
components: { PurePostList },
template: `<pure-post-list :posts="posts" loading/>`,
data: () => ({ posts: [] })
}
})
.add('no posts', () => {
return {
components: { PurePostList },
template: `<pure-post-list :posts="posts"/>`,
data: () => ({ posts: [] })
}
})
|