WorkshopTasker/pages/index.vue

23 lines
278 B
Vue
Raw Normal View History

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