mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
e7cc2757c3
Co-authored-by: Alexander Lichter <manniL@gmx.net>
16 lines
179 B
Vue
16 lines
179 B
Vue
<template>
|
|
<Foobar>{{ id }}</Foobar>
|
|
</template>
|
|
|
|
<script>
|
|
import { nextId } from '@/lib/db'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
id: nextId()
|
|
}
|
|
}
|
|
}
|
|
</script>
|