brotherton-erpnext/erpnext/public/js/hub/components/ItemListCard.vue

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
595 B
Vue
Raw Normal View History

2018-08-26 14:39:02 +00:00
<template>
<div class="hub-list-item" :data-route="item.route">
<div class="hub-list-left">
<base-image class="hub-list-image" :src="item.image" />
2018-08-26 14:39:02 +00:00
<div class="hub-list-body ellipsis">
<div class="hub-list-title">{{item.item_name}}</div>
<div class="hub-list-subtitle ellipsis">
<slot name="subtitle"></slot>
2018-08-26 14:39:02 +00:00
</div>
</div>
</div>
<div class="hub-list-right" v-if="message">
2018-08-26 14:39:02 +00:00
<span class="text-muted" v-html="frappe.datetime.comment_when(message.creation, true)" />
</div>
</div>
</template>
<script>
export default {
props: ['item', 'message']
}
</script>