parent
e9d030a089
commit
46120dc3c7
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Adina', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Cardinal Adina (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Cardinal Adina (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Appraisal', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Sorting and Appraisal') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Sorting and Appraisal</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Cairn', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Cairn the Indomitable (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Cairn the Indomitable (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'ConjuredAmalgamate', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Conjured Amalgamate (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Conjured Amalgamate (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Deimos', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Deimos (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Deimos (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,18 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Desmina', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Soulless Horror (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
|
||||
<template> |
||||
<h1>Soulless Horror (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Dhuum', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Dhuum (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Dhuum (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
|
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Escort', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Siege of the Stronghold') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Siege of the Stronghold</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Gates', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Gates of Ahdhashim') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Gates of Ahdhashim</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Gorseval', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Gorseval the Multifarious') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Gorseval the Multifarious</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,28 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Home', |
||||
props: ['roles', 'team'], |
||||
emits: ['addPlayer', 'resetTeam'], |
||||
components: { |
||||
PlayerGrid |
||||
}, |
||||
methods: { |
||||
addPlayer(player) { |
||||
this.$emit('addPlayer', player) |
||||
}, |
||||
resetTeam() { |
||||
this.$emit('resetTeam') |
||||
} |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Home') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Home</h1> |
||||
|
||||
<h2>Team</h2> |
||||
|
||||
<PlayerGrid :roles="roles" :team="team" @addPlayer="addPlayer($event)" @resetTeam="resetTeam($event)" /> |
||||
|
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'KeepConstruct', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Keep Construct (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Keep Construct (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Largos', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Twin Largos (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Twin Largos (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Matthias', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Matthias Gabrel') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Matthias Gabrel</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Mursaat', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Mursaat Overseer (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Mursaat Overseer (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Peerless', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Qadim the Peerless (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Qadim the Peerless (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'PrisonCamp', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Prison Camp') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Prison Camp</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Qadim', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Qadim (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Qadim (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'River', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'River of Souls') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>River of Souls</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Sabetha', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Sabetha the Saboteur') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Sabetha the Saboteur</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Sabir', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Cardinal Sabir (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Cardinal Sabir (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Samarog', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Samarog (CM)') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Samarog (CM)</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Slothasor', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Slothasor') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Slothasor</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'SpiritWoods', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Spirit Woods') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Spirit Woods</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Statues', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Statues of Grenth') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Statues of Grenth</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'TwistedCastle', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Twisted Castle') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Twisted Castle</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'ValeGuardian', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Vale Guardian') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Vale Guardian</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
@ -1,17 +1,12 @@ |
||||
<script> |
||||
import PlayerGrid from '../components/PlayerGrid.vue' |
||||
|
||||
export default { |
||||
name: 'Xera', |
||||
props: ['team'], |
||||
components: { |
||||
PlayerGrid |
||||
mounted() { |
||||
this.$emit('setPageTitle', 'Xera') |
||||
} |
||||
} |
||||
</script> |
||||
|
||||
<template> |
||||
<h1>Xera</h1> |
||||
|
||||
<PlayerGrid :team="team" /> |
||||
</template> |
Loading…
Reference in new issue