Nuxt/test/fixtures/ssr/pages/fetch.vue

15 lines
232 B
Vue
Raw Normal View History

2017-07-03 18:19:22 +00:00
<template>
<foobar>{{$store.__id}}</foobar>
</template>
<script>
import { nextId } from '@/lib/db'
export default {
2017-10-31 13:26:19 +00:00
async fetch({store}) {
// We use store just as a shared reference
store.__id = nextId()
}
2017-07-03 18:19:22 +00:00
}
</script>