14 lines
206 B
Vue
14 lines
206 B
Vue
<template>
|
|
<div class="cardholder">
|
|
<ColorCard></ColorCard>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import ColorCard from "src/components/ColorCard.vue";
|
|
|
|
defineOptions({
|
|
name: 'HomePage'
|
|
})
|
|
</script>
|