Skip to content

Commit

Permalink
Update DashBoard.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami authored Jun 2, 2024
1 parent ea98ee9 commit 095ca14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/DashBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ async function changeShowFrptoken(event) {
}
const traffic = ref(Number(localStorage.getItem('traffic')) / 1024 + 'GB')
const Proxiesanimation = ref(Number(localStorage.getItem('proxies_num')))
const Proxiesanimation = ref(Number(store.getters.get_proxies_num))
const TrafficRef = ref(null)
const boardcast_html = ref('')
const boardcast_show = ref(true)
Expand Down Expand Up @@ -255,7 +255,7 @@ function howtosayhi() {
}
setInterval(() => {
Proxiesanimation.value = Number(localStorage.getItem('proxies_num'))
Proxiesanimation.value = Number(store.getters.get_proxies_num)
traffic.value = Number(localStorage.getItem('traffic')) / 1024 + 'GB'
inbound.value = store.getters.get_in_bound + 'Mbps 下行'
outbound.value = store.getters.get_out_bound + 'Mbps 上行'
Expand Down

0 comments on commit 095ca14

Please sign in to comment.