This commit is contained in:
2020-07-30 18:39:37 +02:00
parent f95fe42c7f
commit e21bc0782c
11 changed files with 101 additions and 55 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ export default new Vuex.Store ({
},
actions: {
async get_log ({ commit }) {
const log = await fetch ('log')
const log = await fetch ('/log')
.then ((res) => res.json ());
commit ('set_log', log);
}