dashboard
repositories
filestore
activity
search
login
admin
/
xinbi
forked from
xinbi
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
隐藏etc 去掉着头顶两个标志 去掉着两个图标
dcc
2024-05-14
cf1a7b806caf347f6b1c1b8d379936bfa3a42dd2
[~admin/xinbi.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;
}
}
}