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>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'dropdown-item',
|
|
|
|
props: {
|
|
|
|
to: {
|
|
|
|
required: true,
|
|
|
|
},
|
|
|
|
icon: {
|
|
|
|
type: String,
|
|
|
|
required: false,
|
|
|
|
default: '',
|
2021-07-17 23:21:46 +02:00
|
|
|
},
|
2021-01-30 17:17:04 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|