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