Nuxt/test/fixtures/basic/pages/index.vue

11 lines
174 B
Vue
Raw Normal View History

<template>
<div>
<h1>Hello Vue 3</h1>
<div>Config: {{ $config.testConfig }}</div>
</div>
</template>
<script setup>
const $config = useRuntimeConfig()
</script>