2018-12-06 10:23:38 +01:00
|
|
|
Vue.component('MsgCard', {
|
|
|
|
template: `<div class="om-card card">
|
|
|
|
<h6 class="msg-head">
|
|
|
|
<b>{{ msg.subject }}</b>
|
|
|
|
<img src="favicon.ico" width=20px height=20px>
|
|
|
|
</h6>
|
|
|
|
{{ msg.message }}<br><br>
|
|
|
|
<a href="#">{{ msg.tag }}</a></p>
|
2018-12-18 09:20:13 +01:00
|
|
|
<div class="om-card-footer"> <div class="om-user-line">
|
2018-12-06 10:23:38 +01:00
|
|
|
<i class="material-icons">account_circle</i>
|
2018-12-18 09:20:13 +01:00
|
|
|
Erstellt von {{ msg.user }}</div>
|
|
|
|
<i class="material-icons">bookmark_border</i>
|
2018-12-06 10:23:38 +01:00
|
|
|
</div></div>`,
|
|
|
|
props: ['msg']
|
|
|
|
});
|