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

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