3 <Home msg="Welcome to Your Vue.js Apppp"/>
8 // @ is an alias to /src
9 import HelloWorld from "@/components/HelloWorld.vue";
19 // Show a variant summary on index
20 Vue.component('my-variant-summary', {
21 props: ['vobj','index'],
23 <div class="variant col-sm-12 col-md-5 col-lg-4" :id="vobj.name"
24 :class="{'col-md-offset-1': index%2==0, 'col-lg-offset-2': index%2==0}">
26 <h4 class="boxtitle text-center">
28 <span class="count-players">
32 <p class="description text-center">
33 {{ translate(vobj.desc) }}
40 return "/" + this.vobj.name;
44 translate: function(text) {
45 return translations[text];