306a926c66
Co-authored-by: sytone <github@sytone.com> Co-authored-by: Sytone <github@sytone.com> Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/520 Reviewed-by: konrad <konrad@kola-entertainments.de> Co-authored-by: sytone <kolaente@sytone.com> Co-committed-by: sytone <kolaente@sytone.com>
28 lines
377 B
Vue
28 lines
377 B
Vue
<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: '',
|
|
},
|
|
},
|
|
}
|
|
</script>
|