Nuxt/test/fixtures/basic/pages/app-config.vue
pooya parsa 94f76ea930
feat(nuxt): app.config with hmr and reactivity support (#6333)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2022-08-17 17:23:13 +02:00

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>