22 lines
278 B
Vue
22 lines
278 B
Vue
<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>
|