# Link
A component that can be used to render links to internal routes or external resources. Depends on Vue Router (opens new window)
# Props
# disabled
Type: Boolean
Default: false
Setting disabled
prop will cancel all click
-events from being emitted.
# to
Type: String
| Object
Default: null
Denotes the target route of the link: The value will be passed – as is – to the RouterLink
that will be rendered on your behalf.
# href
Type: String
Default: null
Configure the resolved path/url should be used as the value for the href
-attribute. You can only specify either to
or href
– not both.