diff options
Diffstat (limited to 'src/App.vue')
| -rw-r--r-- | src/App.vue | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..f88c1a0 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,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> |
