<template>
<tr>
<td>{{ nombre }}</td>
<td>{{ cantidad }}</td>
<td>${{ total }}</td>
</tr>
</template>
<script>
export default {
name: "PedidosAdminFilaBono",
props: {
nombre: String,
cantidad: Number,
total: Number
}
</script>
<style scoped>
</style>