milnode
Version:
Vue.js Component Framework, build on top of vuetify
35 lines (30 loc) • 482 B
JavaScript
// Initial state
const state = {
appDrawer: null,
appTitle: null
}
// Getters
const getters = {
title: (state) => state.appTitle
}
// Actions
const actions = { }
// Mutations
const mutations = {
DRAWER (state, payload) {
state.appDrawer = payload
},
DRAWER_TOGGLE (state) {
state.appDrawer = !state.appDrawer
},
TITLE (state, payload) {
state.appTitle = payload
}
}
export default {
namespaced: true,
state,
getters,
actions,
mutations
}