mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
94f76ea930
Co-authored-by: Daniel Roe <daniel@roe.dev>
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>
|