16 lines
253 B
Vue
16 lines
253 B
Vue
|
<script setup>
|
||
|
import HelloWorld from "./components/HelloWorld.vue";
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div>
|
||
|
<header>
|
||
|
<div class="wrapper">
|
||
|
<HelloWorld msg="You did it!" />
|
||
|
</div>
|
||
|
</header>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped></style>
|