index.js 256 B

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