CardCart.vue 274B

1234567891011121314151617181920
  1. <script setup>
  2. defineProps({
  3. title: {
  4. type: String,
  5. },
  6. description: {
  7. type: String,
  8. },
  9. })
  10. </script>
  11. <template>
  12. <div class="card">
  13. <h5 class="mb-1">{{ title }}</h5>
  14. <span>{{ description }}</span>
  15. <Chart v-bind="$attrs" />
  16. </div>
  17. </template>