blob: 05fa517cfed968b83384e1a75d93ab351ec346c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { storiesOf } from '@storybook/vue'
import { center } from '../../.storybook/decorators'
import RankingFirstEntry from './RankingFirstEntry'
import { rankingEntry } from './RankingEntry.stories'
storiesOf('Ranking/RankingFirstEntry', module)
.addDecorator(center)
.add('default', () => {
return {
components: { RankingFirstEntry },
template: `<ranking-first-entry :troop="troop" :points="points" />`,
data: () => rankingEntry
}
})
|