16b06ce47a41431313114c0e250fd287271a9161
1 // Show a variant summary on index
2 Vue
.component('my-variant-summary', {
3 props: ['vobj','index'],
5 <div class="variant col-sm-12 col-md-5 col-lg-4" :id="vobj.name"
6 :class="{'col-md-offset-1': index%2==0, 'col-lg-offset-2': index%2==0}">
8 <h4 class="boxtitle text-center">
10 <span class="count-players">
14 <p class="description text-center">
15 {{ translate(vobj.desc) }}
22 return "/" + this.vobj
.name
;
26 translate: function(text
) {
27 return translations
[text
];