mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
12 lines
224 B
Vue
12 lines
224 B
Vue
|
<template>
|
||
|
<div>
|
||
|
App Config:
|
||
|
<!-- eslint-disable-next-line vue/no-v-html -->
|
||
|
<pre v-html="JSON.stringify(appConfig)" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
const appConfig = useAppConfig()
|
||
|
</script>
|