mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
15 lines
245 B
Vue
15 lines
245 B
Vue
<template>
|
|
<foobar>{{$store.__id}}</foobar>
|
|
</template>
|
|
|
|
<script>
|
|
import { nextId } from '@/lib/db'
|
|
|
|
export default {
|
|
async fetch({store}) {
|
|
// We use store just as a shared reference
|
|
store.__id = nextId()
|
|
},
|
|
}
|
|
</script>
|