Files
gterFang/src/store/index.js

40 lines
742 B
JavaScript

import { createStore } from 'vuex'
export default createStore({
state: {
seachTypeData: [],
indexData: [],//首页数据
ListSelectBtn: [],//瀑布流选项
user: {}, // 我的信息数据
wechat: {}, // 微信号 二维码等数据
nav: [], // 顶部的导航数据
apartment: {}, // 公寓筛选的字段
routeList:{
index:{
path:'/',
title:'港校租房'
},
secondaryIndex:{
path:'',
title:'',
}
},//导航路由列表
seachSelect:{
seachPage:{}
},//保存筛选条件
showloginmodal: false, // 是否需要登录状态
},
getters: {
},
mutations: {
},
actions: {
},
modules: {
},
plugins:[
]
})