UNPKG

@mmh-software/webview

Version:
14 lines (11 loc) 280 B
import Vue from "vue"; // save our state (isPanel open or not) export const store = Vue.observable({ isNavOpen: false }); // We call toggleNav anywhere we need it in our app export const mutations = { toggleNav() { //store.isNavOpen = !store.isNavOpen } };