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

This commit is contained in:
GoEdgeLab
2021-04-18 15:17:49 +08:00
parent af6e24a2a5
commit c5b0bd277c
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>`
})