WAF支持更多动作

This commit is contained in:
GoEdgeLab
2021-07-14 22:45:52 +08:00
parent 00c158f0a5
commit 91443e199b
14 changed files with 836 additions and 145 deletions

View File

@@ -52,6 +52,9 @@ Vue.component("values-box", {
this.isUpdating = false;
this.isAdding = false;
this.value = "";
},
updateAll: function (values) {
this.vValeus = values
}
},
template: `<div>
@@ -78,7 +81,7 @@ Vue.component("values-box", {
</div>
</div>
<div v-if="!isAdding && !isUpdating">
<button class="ui button small" type="button" @click.prevent="create()">+</button>
<button class="ui button tiny" type="button" @click.prevent="create()">+</button>
</div>
</div>`
});