index.js 529 B

12345678910111213141516
  1. import Vue from "vue";
  2. import Vuex from "vuex";
  3. Vue.use(Vuex);
  4. export default new Vuex.Store({
  5. state: {
  6. // configTitleList: ['摄像头', '完美传感器', '激光雷达', '毫米波雷达', 'GPS'],
  7. configTitleList: ['摄像头', '完美传感器', '激光雷达', 'GPS'],
  8. fileHost: 'http://10.15.12.70:8001', // 开发环境需要连开发服务器地址,上线后会用相对地址拼接fileUrl
  9. fileUrl: '/simulation/resource/common/minio/preview',
  10. },
  11. mutations: {},
  12. actions: {},
  13. modules: {},
  14. });