We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 383b255 commit b1dff40Copy full SHA for b1dff40
src/core/utils/MdRouterLinkProps.js
@@ -1,6 +1,7 @@
1
export default (context, props) => {
2
+ const RouterLink = context.$options.components['RouterLink'] || context.$options.components['router-link'];
3
return {
4
...props,
- ...context.$options.components['router-link'].options.props
5
+ ...RouterLink.options.props
6
}
7
0 commit comments