23 lines
324 B
Vue
23 lines
324 B
Vue
|
<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>
|