mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-05 06:10:26 +08:00
7 lines
271 B
JavaScript
7 lines
271 B
JavaScript
|
|
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>`
|
||
|
|
})
|