blob: f88c1a040aa67b1d3293fe3e3ac0c952a8058007 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<template>
<div class="text-stone-100 bg-yellow-700">
Hello World
</div>
<test-component/>
</template>
<script setup lang="ts">
import TestComponent from './components/TestComponent.vue';
</script>
|