play page
This commit is contained in:
parent
9ad50863b1
commit
1df7a07863
@ -17,12 +17,6 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.startpage {
|
||||
&__titlebox {
|
||||
|
26
client/pages/play.vue
Normal file
26
client/pages/play.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user