ch-tgr-h5/src/views/404.vue
2026-06-11 10:30:24 +08:00

24 lines
398 B
Vue

<template>
<van-empty image="error" description="抱歉,该页面不存在" />
<div class="b_l_w" style="display: flex; justify-content: center;">
<van-button type="primary" @click="back">返回</van-button>
</div>
</template>
<script>
export default {
mounted() {
},
data() {
return {
}
},
methods: {
back() {
this.$navigate('/My');
}
}
}
</script>