aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorXiaofeng An <futureweb2020@yandex.com>2019-02-06 11:53:51 -0500
committerXiaofeng An <futureweb2020@yandex.com>2019-02-06 11:53:51 -0500
commita40d1eb3a09738dc0068501d020eacddf6ba3775 (patch)
tree14f11327bb01a41713086174dbce8142feb68a88 /src/App.vue
parentf512ee2c3c30fbdd983dfcf8df5008208037f71e (diff)
remove unnecessary div
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/App.vue b/src/App.vue
index 342a4fdf..7541928f 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -38,11 +38,9 @@
</div>
<div class="main">
<div v-if="!currentUser" class="login-hint panel panel-default">
- <div class="panel-body">
- <router-link :to="{ name: 'login' }">
- {{ $t("login.hint") }}
- </router-link>
- </div>
+ <router-link :to="{ name: 'login' }" class="panel-body">
+ {{ $t("login.hint") }}
+ </router-link>
</div>
<transition name="fade">
<router-view></router-view>