Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix new router-link registration name #1977 #1978

Merged
merged 1 commit into from
Dec 18, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix new router-link registration name #1977
  • Loading branch information
Ian Savchenko (isao) committed Nov 26, 2018
commit 38b505dfe7eb2dcf9f45403b60a667b083fa57eb
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
}
}