From ad633a712cdacceafc0346bca4069fa1bab3532f Mon Sep 17 00:00:00 2001 From: Maxence Lange Date: Tue, 23 Jun 2020 12:57:18 -0100 Subject: eslint issue Signed-off-by: Maxence Lange --- src/App.vue | 8 ++++++-- src/router.js | 10 +++++----- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/src/App.vue b/src/App.vue index ead2d496..1cbe8ff7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,7 +2,10 @@
    - +
@@ -72,7 +75,7 @@ } .setup { - margin: auto; + margin: auto; width: 700px; } @@ -84,6 +87,7 @@ #social-spacer a:focus { border: none !important; } + a.external_link { text-decoration: underline; } diff --git a/src/router.js b/src/router.js index e99e0b42..696c62e2 100644 --- a/src/router.js +++ b/src/router.js @@ -25,11 +25,11 @@ import Vue from 'vue' import Router from 'vue-router' // Dynamic loading -const Timeline = () => import('./views/Timeline') -const TimelineSinglePost = () => import('./views/TimelineSinglePost') -const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile') -const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline') -const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers') +const Timeline = () => import('./views/Timeline.vue') +const TimelineSinglePost = () => import('./views/TimelineSinglePost.vue') +const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile.vue') +const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline.vue') +const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers.vue') Vue.use(Router) -- cgit v1.2.3