importVuefrom"vue";
// save our state (isPanel open or not) exportconst store = Vue.observable({
isNavOpen: false
});
// We call toggleNav anywhere we need it in our appexportconst mutations = {
toggleNav() {
//store.isNavOpen = !store.isNavOpen
}
};