改进界面

This commit is contained in:
刘祥超
2020-11-21 15:56:53 +08:00
parent 9a1a8bd17f
commit 32bf2a7dd3
4 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ Vue.component("server-group-selector", {
},
template: `<div>
<div v-if="groups.length > 0">
<div class="ui label tiny" v-if="groups.length > 0" v-for="(group, index) in groups">
<div class="ui label small basic" v-if="groups.length > 0" v-for="(group, index) in groups">
<input type="hidden" name="groupIds" :value="group.id"/>
{{group.name}} &nbsp;<a href="" title="删除" @click.prevent="removeGroup(index)"><i class="icon remove"></i></a>
</div>