From fd094ff62b1b1267aa73a086bf6660a7059fb64a Mon Sep 17 00:00:00 2001 From: jedi Date: Fri, 29 Nov 2019 01:21:44 +0100 Subject: [PATCH] make it more demo-able --- .gitignore | 2 ++ src/App.vue | 4 +--- src/components/Cards.vue | 3 --- src/components/Navbar.vue | 2 +- yarn.lock | 44 +++++++++++++++++++++++++++++++++++++++ 5 files changed, 48 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index a0dddc6..f3ef643 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,8 @@ npm-debug.log* yarn-debug.log* yarn-error.log* +yarn.lock + # Editor directories and files .idea .vscode diff --git a/src/App.vue b/src/App.vue index f7e476b..e9249f4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -29,7 +29,6 @@ - @@ -38,11 +37,10 @@ import Table from '@/components/Table'; import Navbar from '@/components/Navbar'; import Cards from '@/components/Cards'; import { mapState } from 'vuex'; -import Modal from '@/components/Modal'; export default { name: 'app', - components: {Modal, Navbar, Table, Cards }, + components: { Navbar, Table, Cards }, computed: mapState(['loadedItems', 'layout']) }; diff --git a/src/components/Cards.vue b/src/components/Cards.vue index 51e3b44..163cb61 100644 --- a/src/components/Cards.vue +++ b/src/components/Cards.vue @@ -50,9 +50,6 @@ export default {