12345678910111213141516171819 |
- export const state = () => ({
-
- InputGetFocus: false
- })
- export const mutations = {
- SET_INPUT_STATUS (state, flag) {
- state.InputGetFocus = flag
- }
- }
- export const actions = {
- SetInputGetFocus({commit}, flag) {
- commit('SET_INPUT_STATUS', flag)
- }
- }
|