
In this lesson, we’ll learn how to add tabs to our application and implement a simple solution for global event communication.
We’ll learn how to create tabs to display our reviews and our review form separately.
index.html
    <div id="app">
      <div class="cart">
        <p>Cart({{ cart.length }})</p>
      </div>
      <product :premium="premium" @add-to-cart="updateCart"></product>
    </div> 
main.js
    Vue.component('product', {
        props: {