2021-01-30 17:17:04 +01:00
|
|
|
<template>
|
|
|
|
<router-link
|
|
|
|
:to="to"
|
|
|
|
class="dropdown-item">
|
|
|
|
<span class="icon" v-if="icon !== ''">
|
|
|
|
<icon :icon="icon"/>
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
<slot></slot>
|
|
|
|
</span>
|
|
|
|
</router-link>
|
|
|
|
</template>
|
|
|
|
|
2021-12-04 15:47:32 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
defineProps({
|
|
|
|
to: {
|
|
|
|
required: true,
|
2021-01-30 17:17:04 +01:00
|
|
|
},
|
2021-12-04 15:47:32 +01:00
|
|
|
icon: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
})
|
2021-01-30 17:17:04 +01:00
|
|
|
</script>
|