实现基本的域名、记录管理

This commit is contained in:
刘祥超
2021-05-27 17:09:53 +08:00
parent 70cd06dc85
commit 30e9753c80
48 changed files with 1386 additions and 9 deletions

View File

@@ -2,6 +2,6 @@ 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>
<p class="comment">{{message}}<slot></slot></p>
</div>`
})