om/public/home.js

16 lines
259 B
JavaScript
Raw Normal View History

2018-12-05 16:35:54 +01:00
const HomeRouter = {
template: `
<div>
<MsgCard
v-for="(msg, index) in messages"
:key="msg.id"
:msg="msg"
></MsgCard>
</div>`,
data: function () {
return { messages: _messages };
},
2018-12-05 16:35:54 +01:00
methods: {
},
};