Добавил возможность переключения fullScreen

This commit is contained in:
Book Pauk
2019-01-25 21:49:19 +07:00
parent bdf0388049
commit 26db83771c
3 changed files with 48 additions and 16 deletions

View File

@@ -2,7 +2,6 @@ import Vue from 'vue';
// initial state
const state = {
fullScreenActive: false,
toolBarActive: true,
openedBook: {},
};
@@ -28,9 +27,6 @@ const actions = {};
// mutations
const mutations = {
setFullScreenActive(state, value) {
state.fullScreenActive = value;
},
setToolBarActive(state, value) {
state.toolBarActive = value;
},