Custom Component
There are some sections that are repeated in the whole app. We create components and call that component where it required.
Last updated
Was this helpful?
There are some sections that are repeated in the whole app. We create components and call that component where it required.
Last updated
Was this helpful?
Was this helpful?
Create a component then declare and export component in module file like this :
components:{
shippingAddress:ShippingAddress,
promoCodes:PromoCodes,
paymentOption:PaymentOption
}
2. Use the selector of custom component in another component like this :
<shipping-address></shipping-address>
<promo-codes></promo-codes>
<payment-option></payment-option>