Skip to content

Commit

Permalink
fix(ui): fix typos (#12902)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hashen110 committed Mar 23, 2022
1 parent 14e1063 commit e3f2fb2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ui/src/composables/private/use-router-link.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"props": {
"to": {
"type": [ "String", "Object" ],
"desc": "Equivalent to Vue Router <router-link> 'to' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'to' property; Superseded by 'href' prop if used",
"examples": [
"/home/dashboard",
":to=\"{ name: 'my-route-name' }\""
Expand All @@ -12,26 +12,26 @@

"exact": {
"type": "Boolean",
"desc": "Equivalent to Vue Router <router-link> 'exact' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'exact' property; Superseded by 'href' prop if used",
"category": "navigation"
},

"replace": {
"type": "Boolean",
"desc": "Equivalent to Vue Router <router-link> 'replace' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'replace' property; Superseded by 'href' prop if used",
"category": "navigation"
},

"active-class": {
"type": "String",
"desc": "Equivalent to Vue Router <router-link> 'active-class' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'active-class' property; Superseded by 'href' prop if used",
"examples": [ "my-active-class" ],
"category": "navigation"
},

"exact-active-class": {
"type": "String",
"desc": "Equivalent to Vue Router <router-link> 'active-class' property; Superseeded by 'href' prop if used",
"desc": "Equivalent to Vue Router <router-link> 'active-class' property; Superseded by 'href' prop if used",
"examples": [ "my-exact-active-class" ],
"category": "navigation"
},
Expand Down

0 comments on commit e3f2fb2

Please sign in to comment.