Vue.component("http-stat-config-box", { props: ["v-stat-config"], data: function () { let stat = this.vStatConfig if (stat == null) { stat = { isOn: true } } return { stat: stat } }, template: `
是否开启统计
` })