AI销管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
234 B

  1. import Vue from 'vue';
  2. import Vuex from 'vuex';
  3. Vue.use(Vuex)
  4. export default new Vuex.Store({
  5. state: {
  6. messageObj: {}, //
  7. },
  8. mutations: {
  9. // 日报详情
  10. setMessageObj(state, obj) {
  11. state.messageObj = obj
  12. },
  13. },
  14. })