实现基本的反向代理

This commit is contained in:
刘祥超
2020-09-27 15:26:11 +08:00
parent d5fd7f5a63
commit 7b39256735
4 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
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>'
})