dev-audioprocessing/components/ProductCard.vue

11 lines
155 B
Vue
Raw Normal View History

2022-12-12 03:10:34 +00:00
<template>
<div class="card m-4 p-4 ">
<img class="w-100"/>
</div>
</template>
<script>
export default {
props:['title','desc','id']
}
</script>