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

16 lines
178 B
Vue
Raw Normal View History

2017-07-03 18:19:22 +00:00
<template>
<Foobar>{{ id }}</Foobar>
2017-07-03 18:19:22 +00:00
</template>
<script>
import { nextId } from '@/lib/db'
export default {
2017-10-31 13:26:19 +00:00
data() {
return {
id: nextId()
2017-07-03 18:19:22 +00:00
}
2017-10-31 13:26:19 +00:00
}
2017-07-03 18:19:22 +00:00
}
</script>