mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-07 17:32:31 +00:00
19 lines
384 B
Vue
19 lines
384 B
Vue
<script setup>
|
|
const themeConfig = useRuntimeConfig().theme
|
|
</script>
|
|
|
|
<template>
|
|
<NuxtExampleLayout example="config-extends">
|
|
theme runtimeConfig
|
|
<pre>{{ JSON.stringify(themeConfig, null, 2) }}</pre>
|
|
<BaseButton>Base Button</BaseButton>
|
|
<FancyButton>Fancy Button</FancyButton>
|
|
</NuxtExampleLayout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
pre {
|
|
text-align: left;
|
|
}
|
|
</style>
|