mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
21 lines
250 B
Vue
21 lines
250 B
Vue
|
<template>
|
||
|
<pre>
|
||
|
{{ debug }}
|
||
|
</pre>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
asyncData() {
|
||
|
return {
|
||
|
[Math.random()]: true
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
debug() {
|
||
|
return JSON.stringify(this.$data, null, 2)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|