food/src/components/Product.vue

14 lines
193 B
Vue

<template>
<table>
<tr>
<th>Barcode</th>
<td>{{ $route.params.barcode }}</td>
</tr>
</table>
</template>
<script>
export default {
};
</script>