Доработки отображения в зависимости от config.mode

This commit is contained in:
Book Pauk
2019-01-07 22:59:49 +07:00
parent 0daa7110ca
commit 5e102cf234
3 changed files with 24 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ const api = axios.create({
class Misc {
async loadConfig() {
const response = await api.post('/config', {params: ['name', 'version']});
const response = await api.post('/config', {params: ['name', 'version', 'mode']});
return response.data;
}
}