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