@@ -28,6 +28,7 @@ const CreateMsgRouter = { | |||
</div> | |||
`, | |||
data: function () { | |||
return {}; | |||
}, | |||
methods: { | |||
}, |
@@ -9,6 +9,7 @@ const FileRouter = { | |||
</div> | |||
`, | |||
data: function () { | |||
return {}; | |||
}, | |||
methods: { | |||
}, |
@@ -11,5 +11,11 @@ const HomeRouter = { | |||
return { messages: _messages }; | |||
}, | |||
methods: { | |||
refresh_messages: function () { | |||
_messages.push ({id: 42, subject: "xxx", message: "warum habt ihr auch so viel", user: "nobody", tags:"foo"}); | |||
}, | |||
}, | |||
/*mounted: function() { | |||
this.refresh_messages(); | |||
}*/ | |||
}; |