[Vuejs]-Vue2 – How to add my own properties to the component

-3👍

If you’re using Vue 2 you can add that in like

export default {
  name: 'ordersList',
  data () {
   return {
     breadcrumbs: [],
   }
  }
.....

Please have a look at the docs here

Leave a comment