UNPKG

acute-framework

Version:

The Acute Framework is a (relatively) lightweight Vue.js component framework designed for Bootstrap users who want a bit more control over their layouts.

20 lines (17 loc) 249 B
import Vue from 'vue' import Vuex from 'vuex' Vue.use(Vuex) export default new Vuex.Store({ state: { toggle:false }, mutations: { setToggle(state,val){ this.state.toggle= val; } }, actions: { }, modules: { } })