mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
45b4946026
Co-Authored-By: Daniel Roe <daniel@roe.dev>
11 lines
174 B
Vue
11 lines
174 B
Vue
<template>
|
|
<div>
|
|
<h1>Hello Vue 3</h1>
|
|
<div>Config: {{ $config.testConfig }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const $config = useRuntimeConfig()
|
|
</script>
|