Nuxt/test/fixtures/children/pages/patch/_id.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
237 B
Vue

<template>
<div>
<h2>
_id: <i data-date-id>
{{ date }}
</i>
</h2>
<NuxtChild />
</div>
</template>
<script>
export default {
asyncData () {
return {
date: Date.now()
}
}
}
</script>