WorkshopTasker/pages/index.vue

24 lines
281 B
Vue
Raw Normal View History

2023-05-11 06:03:22 +02:00
<script setup>
import Test from '~/components/test.vue';
</script>
<template>
2023-05-24 09:40:45 +02:00
<h1>Hi mom!</h1>
<br>
2023-05-11 06:03:22 +02:00
<Test />
<Test />
<Test />
<Test />
<Test /><br>
<VCard
text="..."
variant="outlined"
/>
</template>
<style scoped>
h1 {
color: blue;
}
</style>