<template>
    <view>
        <view>
			<h1 style="color: aqua;" id="myButton" @click="triggerPopup()">11111111111</h1>
            <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: {
			show(){
				
			},
			triggerPopup(){
				window.location.href = "#/pages/error/400";
			}
        }
    }
</script>

<style>

</style>