mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 09:33:54 +00:00
14 lines
232 B
Vue
14 lines
232 B
Vue
<template>
|
|
<div>
|
|
<Head>
|
|
<Title>Basic fixture</Title>
|
|
</Head>
|
|
<h1>Hello Vue 3</h1>
|
|
<div>Config: {{ $config.testConfig }}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const $config = useRuntimeConfig()
|
|
</script>
|