File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
src/components/NcBreadcrumb Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,9 @@ This component is meant to be used inside a Breadcrumbs component.
43
43
v-if =" (title || icon) && !$slots.default"
44
44
:exact =" exact"
45
45
:to =" to"
46
- :href =" href" >
46
+ :href =" href"
47
+ v-bind =" $attrs"
48
+ v-on =" $listeners" >
47
49
<!-- @slot Slot for passing a material design icon. Precedes the icon and title prop. -->
48
50
<slot name =" icon" >
49
51
<span v-if =" icon" :class =" icon" class =" icon" />
@@ -93,6 +95,7 @@ export default {
93
95
94
96
/**
95
97
* Route Location the link should navigate to when clicked on.
98
+ *
96
99
* @see https://v3.router.vuejs.org/api/#to
97
100
*/
98
101
to: {
@@ -101,7 +104,8 @@ export default {
101
104
},
102
105
103
106
/**
104
- * Route Location the link should navigate to when clicked on.
107
+ * Match the complete route attributes (query and hash included)
108
+ *
105
109
* @see https://v3.router.vuejs.org/api/#exact
106
110
*/
107
111
exact: {
You can’t perform that action at this time.
0 commit comments