WtItemLink
Specs
Props
| Name | Required | Types | Default | Description | Example | Deprecated |
|---|---|---|---|---|---|---|
link |
string,object |
'' |
||||
target |
string |
'_self' |
||||
routeName |
string |
'' |
DEPRECAPTED, use :link, or make a wrapper component | ❗️ | ||
id |
string,number |
'' |
DEPRECAPTED, use :link, or make a wrapper component | ❗️ | ||
invisible |
boolean |
false |
Hide styles | |||
disabled |
boolean |
false |
Slots
| Name | Scope | Description |
|---|---|---|
default |
Example Item Link
Code
vue
<script setup></script>
<template>
<wt-item-link
link="https://dev.webitel.com"
target="_blank"
>
Item link to dev
</wt-item-link>
</template>
<style scoped lang="scss"></style>