优化集群没有节点时的提示

This commit is contained in:
刘祥超
2021-04-18 15:17:49 +08:00
parent 441c0bd628
commit 91010325eb
4 changed files with 31 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
Vue.component("not-found-box", {
props: ["message"],
template: `<div style="text-align: center; margin-top: 5em;">
<div style="font-size: 2em; margin-bottom: 1em"><i class="icon exclamation triangle large grey"></i></div>
<p class="comment">{{message}}</p>
</div>`
})