Move the view components into a views folder rather than mixing them in with the other components.
This commit is contained in:
parent
703d03da3b
commit
3168adb3a5
4 changed files with 192 additions and 0 deletions
|
|
@ -1,35 +0,0 @@
|
|||
<template>
|
||||
<div id="game_code_entry">
|
||||
<h1>
|
||||
Secret Hitler Online
|
||||
</h1>
|
||||
<div>
|
||||
<div
|
||||
v-for="player in players"
|
||||
:key="player.id"
|
||||
class="player"
|
||||
></div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'GameLobby',
|
||||
components: {},
|
||||
data() {return {
|
||||
players: []
|
||||
}},
|
||||
methods: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus">
|
||||
@import "../theme.styl"
|
||||
|
||||
|
||||
</style>
|
||||
<style lang="stylus" scoped>
|
||||
@import "../theme.styl"
|
||||
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue