After updating vue-router to version 3.0.2 a utility MdRouterLinkProps fails. I don't invoke it directly but it is used somewhere internally.
I found the reason: router-link is now registered with a name in a Pascal case, whereas here it is expected to be in kebab case. See these changes https://github.com/vuejs/vue-router/pull/1842/files.
Possible workaround:
Vue.use(VueRouter);
Vue.component('router-link', Vue.options.components.RouterLink);
Vue.component('router-view', Vue.options.components.RouterView);
Thanks, this helped! Hope it's going to get merged...
This fix is not present in version 1.0.0-beta-10.2 I have the same issue with the md-button component, how to get this fix ?
Most helpful comment
This fix is not present in version 1.0.0-beta-10.2 I have the same issue with the md-button component, how to get this fix ?