index.js 244 B

123456789101112131415161718
  1. import { createStore } from 'vuex'
  2. export default createStore({
  3. state: {
  4. fenceng: false
  5. },
  6. getters: {
  7. },
  8. mutations: {
  9. changeFenceng(state, value) {
  10. state.fenceng = value
  11. }
  12. },
  13. actions: {
  14. },
  15. modules: {
  16. }
  17. })