brotherton-erpnext/erpnext/public/js/hub/components/ItemListCard.vue
2018-08-26 20:09:02 +05:30

24 lines
619 B
Vue

<template>
<div class="hub-list-item" :data-route="item.route">
<div class="hub-list-left">
<img class="hub-list-image" v-img-src="item.image">
<div class="hub-list-body ellipsis">
<div class="hub-list-title">{{item.item_name}}</div>
<div class="hub-list-subtitle ellipsis">
<span>{{message.sender}}: </span>
<span>{{message.content}}</span>
</div>
</div>
</div>
<div class="hub-list-right">
<span class="text-muted" v-html="frappe.datetime.comment_when(message.creation, true)" />
</div>
</div>
</template>
<script>
export default {
props: ['item', 'message']
}
</script>