8 lines
151 B
Vue
8 lines
151 B
Vue
<script setup>
|
|
import card from '../components/cards/Card.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<h1>Here is a child component!</h1>
|
|
<card></card>
|
|
</template> |