app.js 252 B

123456789101112131415
  1. "use strict";
  2. require("../../common/vendor.js");
  3. const app = {
  4. state: {
  5. // 当前终端平台
  6. platform: ""
  7. },
  8. mutations: {
  9. SET_PLATFORM: (state, value) => {
  10. state.platform = value;
  11. }
  12. },
  13. actions: {}
  14. };
  15. exports.app = app;