We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210f9f7 commit 8b086a9Copy full SHA for 8b086a9
src/components/breadcrumb/breadcrumb-link.js
@@ -2,7 +2,6 @@ import { mergeData } from 'vue-functional-data-merge'
2
import pluckProps from '../../utils/pluck-props'
3
import { assign } from '../../utils/object'
4
import BLink, { propsFactory as linkPropsFactory } from '../link/link'
5
-import { htmlOrText } from '../../utils/html'
6
7
export const props = assign(linkPropsFactory(), {
8
text: {
@@ -45,7 +44,7 @@ export default {
45
44
return h(
46
tag,
47
mergeData(data, componentData),
48
- children || htmlOrText(suppliedProps.html, suppliedProps.text)
+ children || suppliedProps.html || suppliedProps.text
49
)
50
}
51
0 commit comments