Files
EdgeAdmin/web/public/js/components/common/not-found-box.js
2021-04-18 15:17:49 +08:00

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>`
})