mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
15 lines
232 B
Vue
15 lines
232 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>
|