diff --git a/frontend/src/views/404.vue b/frontend/src/views/404.vue
index 7d7a670e..b1fc16ba 100644
--- a/frontend/src/views/404.vue
+++ b/frontend/src/views/404.vue
@@ -10,7 +10,7 @@
OOPS!
{{ message }}
请检查您输入的网址是否正确,请点击以下按钮返回主页或者发送错误报告
@@ -26,8 +26,13 @@ export default {
name: 'Page404',
computed: {
message () {
- return '网管说这个页面你不能进......'
+ return '这个页面似乎不存在......'
}
+ },
+ mounted () {
+ // remove loading-placeholder
+ const elLoading = document.querySelector('#loading-placeholder')
+ elLoading.remove()
}
}