From ebe42956ada40f04cbd3b7ece372f758ccfe3173 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Wed, 28 Oct 2020 18:27:24 +0700 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=81=D0=B5=20=D0=BA=D0=BE=D0=BC=D0=BF?= =?UTF-8?q?=D0=BE=D0=BD=D0=B5=D0=BD=D1=82=D1=8B=20=D0=B7=D0=B0=D0=B3=D1=80?= =?UTF-8?q?=D1=83=D0=B6=D0=B0=D1=8E=D1=82=D1=81=D1=8F=20=D0=B4=D0=B8=D0=BD?= =?UTF-8?q?=D0=B0=D0=BC=D0=B8=D1=87=D0=B5=D1=81=D0=BA=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/router.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/client/router.js b/client/router.js index 512e0db4..9fc8ebbc 100644 --- a/client/router.js +++ b/client/router.js @@ -2,18 +2,14 @@ import Vue from 'vue'; import VueRouter from 'vue-router'; import _ from 'lodash'; -//немедленная загрузка -import CardIndex from './components/CardIndex/CardIndex.vue'; -//const CardIndex = () => import('./components/CardIndex/CardIndex.vue'); - +const CardIndex = () => import('./components/CardIndex/CardIndex.vue'); const Search = () => import('./components/CardIndex/Search/Search.vue'); const Card = () => import('./components/CardIndex/Card/Card.vue'); const Book = () => import('./components/CardIndex/Book/Book.vue'); const History = () => import('./components/CardIndex/History/History.vue'); - +const Reader = () => import('./components/Reader/Reader.vue'); //немедленная загрузка -//const Reader = () => import('./components/Reader/Reader.vue'); -import Reader from './components/Reader/Reader.vue'; +//import Reader from './components/Reader/Reader.vue'; //const Forum = () => import('./components/Forum/Forum.vue'); const Income = () => import('./components/Income/Income.vue');