Nuxt/examples/app-config/app.vue
Sébastien Chopin 94261349dc
docs: add app-config example (#7247)
Co-authored-by: Pooya Parsa <pooya@pi0.io>
2022-09-05 15:16:30 +02:00

14 lines
285 B
Vue

<script setup>
const config = useAppConfig()
</script>
<template>
<NuxtExampleLayout example="app-config">
<h1>{{ config.title }}</h1>
<p>{{ config.description }}</p>
<button v-if="config.showButton">
I am a button
</button>
</NuxtExampleLayout>
</template>