dashboard
repositories
filestore
activity
search
login
main
/
xinbi
新币+dapp app 前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
就是我访问https://dapp.barcblays.cyou这个站点的时候 如果用普通的浏览器访问就直接跳转到dapp.sankeji.shop ...
dcc
2024-05-15
8cd00af43dd28f8525908482de154f7ca7bec8e9
[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;
}
}
}