mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
550a9f2e12
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
18 lines
217 B
Vue
18 lines
217 B
Vue
<template>
|
|
<div>
|
|
{{ a }}
|
|
{{ b }}
|
|
{{ c }}
|
|
{{ d }}
|
|
{{ foo }}
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const a = useA()
|
|
const b = useB()
|
|
const c = useC()
|
|
const d = useD()
|
|
const foo = useFoo()
|
|
</script>
|