Files
DiceCloud/app/imports/client/ui/docs/DocListItem.vue
2022-11-21 18:22:49 +02:00

31 lines
533 B
Vue

<template>
<v-list-item
:to="doc.href"
style="min-width: 180px;"
>
<v-list-item-avatar v-if="icon">
<svg-icon
v-if="doc && doc.icon"
:shape="doc.icon.shape"
/>
</v-list-item-avatar>
<v-list-item-content>
<v-list-item-title>
{{ doc.name }}
</v-list-item-title>
</v-list-item-content>
</v-list-item>
</template>
<script lang="js">
export default {
props: {
doc: {
type: Object,
required: true,
},
icon: Boolean,
},
}
</script>