November 2017
Beginner to intermediate
398 pages
8h 42m
English
This one is actually pretty simple since it consists of only two images and a castle-banners component that will take care of the health and food display:
Vue.component('castle', { template: `<div class="castle" :class="'player-' + index"> <img class="building" :src="'svg/castle' + index + '.svg'" /> <img class="ground" :src="'svg/ground' + index + '.svg'" /> <!-- Later, we will add a castle-banners component here --> </div>`, props: ['player', 'index'], })
Read now
Unlock full access