main
vue 8 lines 182 Bytes
Raw
1 <template>
2 <div>{{ msg }}</div>
3 </template>
4
5 <script setup lang="ts">
6 // THIS COMPONENT IS USED FOR VITEST TESTING PURPOSES
7 const { msg } = defineProps<{ msg: string }>()
8 </script>