From 3369d0fbb7735b3af2000146d752d31383cf0509 Mon Sep 17 00:00:00 2001 From: Christian Cueni Date: Tue, 9 Oct 2018 10:22:54 +0200 Subject: [PATCH] add blank layout --- client/src/App.vue | 2 ++ client/src/layouts/BlankLayout.vue | 19 +++++++++++++++++++ client/src/router/index.js | 2 +- 3 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 client/src/layouts/BlankLayout.vue diff --git a/client/src/App.vue b/client/src/App.vue index d93c66f0..f678448e 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -8,6 +8,7 @@ diff --git a/client/src/router/index.js b/client/src/router/index.js index 2a009b38..8604dcd2 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -16,7 +16,7 @@ import p404 from '@/pages/p404' import start from '@/pages/start' const routes = [ - {path: '/', component: start}, + {path: '/', component: start, meta: {layout: 'blank'}}, { path: '/module/:slug', component: moduleBase,