2021-04-23 19:52:32 +00:00
|
|
|
<template>
|
2021-10-02 20:30:20 +00:00
|
|
|
<div>
|
|
|
|
<h1>Hello Vue 3</h1>
|
|
|
|
<div>Config: {{ $config.testConfig }}</div>
|
|
|
|
</div>
|
2021-04-23 19:52:32 +00:00
|
|
|
</template>
|
2021-10-02 20:30:20 +00:00
|
|
|
|
|
|
|
<script setup>
|
|
|
|
const $config = useRuntimeConfig()
|
|
|
|
</script>
|