Nuxt/test/fixtures/ssr/pages/data.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

16 lines
179 B
Vue

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