Files
EdgeAdmin/web/public/js/components/server/http-stat-config-box.js
2020-09-20 14:48:35 +08:00

29 lines
581 B
JavaScript

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: `<div>
<input type="hidden" name="statJSON" :value="JSON.stringify(stat)"/>
<table class="ui table definition selectable">
<tr>
<td class="title">是否开启统计</td>
<td>
<div class="ui checkbox">
<input type="checkbox" v-model="stat.isOn"/>
<label></label>
</div>
</td>
</tr>
</table>
<div class="margin"></div>
</div>`
})