Test-Methode

This commit is contained in:
Xenia Grünzinger 2018-12-12 15:56:09 +01:00
parent 645e111f51
commit 129496a13f
3 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,7 @@ const CreateMsgRouter = {
</div> </div>
`, `,
data: function () { data: function () {
return {};
}, },
methods: { methods: {
}, },

View File

@ -9,6 +9,7 @@ const FileRouter = {
</div> </div>
`, `,
data: function () { data: function () {
return {};
}, },
methods: { methods: {
}, },

View File

@ -11,5 +11,11 @@ const HomeRouter = {
return { messages: _messages }; return { messages: _messages };
}, },
methods: { 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();
}*/
}; };