play page

This commit is contained in:
Settel 2021-07-30 18:21:50 +02:00
parent 9ad50863b1
commit 1df7a07863
2 changed files with 26 additions and 6 deletions

View File

@ -17,12 +17,6 @@
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss">
.startpage {
&__titlebox {

26
client/pages/play.vue Normal file
View File

@ -0,0 +1,26 @@
<template>
<div>
<pre class="json">{{ json }}</pre>
</div>
</template>
<script>
export default {
computed: {
json: () => {
const a = {
status: 200,
message: 'ok',
}
return JSON.stringify(a, null, 2)
},
}
}
</script>
<style lang="scss">
.json {
margin: 1em 2em;
color: #ffffff;
}
</style>