Passing props to Vue.js components instantiated by Vue-router

<router-view :some-value-to-pass="localValue"></router-view>

and in your components just add prop:

props: {
      someValueToPass: String
    },

vue-router will match prop in component

Leave a Comment