12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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>
|