Nuxt/test/fixtures/ssr/pages/asyncData.vue

16 lines
183 B
Vue
Raw Normal View History

2017-07-03 18:19:22 +00:00
<template>
<foobar>{{ id }}</foobar>
2017-07-03 18:19:22 +00:00
</template>
<script>
import { nextId } from '@/lib/db'
export default {
asyncData() {
2017-10-31 13:26:19 +00:00
return {
id: nextId()
2017-07-03 18:19:22 +00:00
}
2017-10-31 13:26:19 +00:00
}
2017-07-03 18:19:22 +00:00
}
</script>