knowyt/client/pages/play.vue

27 lines
348 B
Vue
Raw Normal View History

2021-07-30 16:21:50 +00:00
<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>