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