mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
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>
|