mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
27 lines
517 B
Vue
27 lines
517 B
Vue
<template>
|
|
<div :id="proxyName" style="width: 600px; height: 400px" />
|
|
</template>
|
|
|
|
<script>
|
|
import { DrawProxyTrafficChart } from '../utils/chart.js'
|
|
export default {
|
|
props: {
|
|
proxyName: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
mounted() {
|
|
this.initData()
|
|
},
|
|
methods: {
|
|
async initData() {
|
|
const json = await this.$fetch(`traffic/${this.proxyName}`)
|
|
if (!json) return
|
|
|
|
DrawProxyTrafficChart(this.proxyName, json.traffic_in, json.traffic_out)
|
|
}
|
|
}
|
|
}
|
|
</script>
|