dashboard
repositories
filestore
activity
search
login
main
/
composite_h5-main
6.19阿A外汇交易所开发
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
添加缓存
lxf
2025-07-16
f96f952d95930e1295051c1bfe348dd324ebf878
[composite_h5-main.git]
/
src
/
store
/
modules
/
payment.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import {
SET_NAV_HEIGHT,
} from "@/store/const.store"
export default {
namespaced: true,
state: {
navHeight: 0
},
mutations: {
[SET_NAV_HEIGHT](state, {height}) {
state.navHeight = height;
}
}
}