You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
562 B
35 lines
562 B
12 months ago
|
<template>
|
||
|
<view>
|
||
|
<view>
|
||
|
<text style="font-size: 25px;color: #333;">
|
||
|
404 Page Not Found
|
||
|
</text>
|
||
|
</view>
|
||
|
<view>
|
||
|
<text style="font-size: 18px;color: #999;">
|
||
|
{{errMsg}}
|
||
|
</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
onLoad(query) {
|
||
|
this.errMsg = query.errMsg || ''
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|