mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 21:50:28 +08:00
4 lines
201 B
JavaScript
4 lines
201 B
JavaScript
|
|
Vue.component("label-on", {
|
||
|
|
props: ["v-is-on"],
|
||
|
|
template: '<div><span v-if="vIsOn" class="ui label tiny green">已启用</span><span v-if="!vIsOn" class="ui label tiny red">已关闭</span></div>'
|
||
|
|
})
|