Skip to content

Commit

Permalink
fix(MdRouterLink): new router-link registration name (#1978)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanSavchenko authored and Samuell1 committed Dec 18, 2018
1 parent 383b255 commit b1dff40
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/core/utils/MdRouterLinkProps.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export default (context, props) => {
const RouterLink = context.$options.components['RouterLink'] || context.$options.components['router-link'];
return {
...props,
...context.$options.components['router-link'].options.props
...RouterLink.options.props
}
}

0 comments on commit b1dff40

Please sign in to comment.