Nuxt/test/fixtures/ssr/pages/asyncData.vue
Alexander Lichter b4d81dc584 lint: require await in async function (#3676)
* lint: require await in async function

* lint: replace "error" with 2 in config
2018-08-10 08:41:23 +01:00

16 lines
183 B
Vue

<template>
<foobar>{{ id }}</foobar>
</template>
<script>
import { nextId } from '@/lib/db'
export default {
asyncData() {
return {
id: nextId()
}
}
}
</script>