Skip to content

Commit df8b2b1

Browse files
authored
fix(vetur): update tags/attributes definition (#408)
1 parent 61022a6 commit df8b2b1

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

vetur/attributes.json

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
"type": "boolean",
1414
"description": "Setting replace prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will replace the current history entry."
1515
},
16+
"custom": {
17+
"type": "boolean",
18+
"description": "Whether `<router-link>` should not wrap its content in an `<a>` tag."
19+
},
1620
"active-class": {
1721
"type": "string",
1822
"description": "Configure the active CSS class applied when the link is active. Note the default value can also be configured globally via the `linkActiveClass` router constructor option."

vetur/tags.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Component that renders the matched component for the current location. Components rendered by `<router-view>` can also contain their own `<router-view>` to render nested routes."
55
},
66
"router-link": {
7-
"attributes": ["to", "activeClass","exactActiveClass", "custom"],
7+
"attributes": ["to", "replace", "custom", "active-class","exact-active-class", "aria-current-value"],
88
"description": "Component that renders an `<a>` with the correct `href` attribute and click listeners to trigger a local navigation when clicked. Can also customize its rendering by providing the `custom` prop and using its `v-slot` API."
99
}
1010
}

0 commit comments

Comments
 (0)