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

15 lines
233 B
Vue

<template>
<Foobar>{{ $store.__id }}</Foobar>
</template>
<script>
import { nextId } from '@/lib/db'
export default {
fetch ({ store }) {
// We use store just as a shared reference
store.__id = nextId()
}
}
</script>