Nuxt/examples/config-extends/app.vue

17 lines
299 B
Vue
Raw Normal View History

<script setup>
const themeConfig = useRuntimeConfig().theme
</script>
<template>
<NuxtExampleLayout example="config-extends">
theme runtimeConfig
<pre>{{ JSON.stringify(themeConfig, null, 2) }}</pre>
</NuxtExampleLayout>
</template>
<style scoped>
pre {
text-align: left;
}
</style>