Nuxt/test/fixtures/ssr/components/test.vue

17 lines
179 B
Vue
Raw Normal View History

2017-07-03 18:19:22 +00:00
<template>
<foobar>
{{id}}
</foobar>
</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>