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