Nuxt/test/fixtures/spa/pages/async.vue
pooya parsa e7cc2757c3 refactor: update eslint-config to 1.x
Co-authored-by: Alexander Lichter <manniL@gmx.net>
2019-07-10 15:15:49 +04:30

21 lines
252 B
Vue

<template>
<pre>
{{ debug }}
</pre>
</template>
<script>
export default {
computed: {
debug () {
return JSON.stringify(this.$data, null, 2)
}
},
asyncData () {
return {
[Math.random()]: true
}
}
}
</script>