app.js 226 B

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