From 0e6d3ce797b132eff62e57d46b9ce31bde8152cd Mon Sep 17 00:00:00 2001 From: Bowen Date: Tue, 16 Oct 2018 07:59:28 +0800 Subject: [PATCH] feat: handle click event of home button in error page --- src/view/Error/index.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/view/Error/index.vue b/src/view/Error/index.vue index 4235051..4de22a1 100644 --- a/src/view/Error/index.vue +++ b/src/view/Error/index.vue @@ -13,6 +13,7 @@ {{text.tipsButton}} @@ -45,6 +46,12 @@ export default { } }, + methods: { + onClick () { + this.$router.push('/dashboard/analysis') + } + }, + components: { ErrorLayout }