Build the Product Detail Page

Learn how to build the detail page for a product.

We’ll start by creating the simple component, ShowDetails.vue, inside the views/Product directory.

Press + to interact
<template>
</template>
<script>
export default {
data(){
return {
}
},
props : [],
methods:{
},
mounted() {
}
}
</script>
<style>
</style>

The script section

We’ll fetch the props (baseURL, products, and categories) ...