From 468026a251d8e1a0960ec2bee4859bbc91dbf8cf Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 20 Jul 2019 23:30:57 +0100 Subject: [PATCH] I have no life --- src/components/ItemGroup.vue | 10 ++++++---- src/data/item-data.json | 28 ++++++++++++++++++++++++++++ src/views/Home.vue | 2 +- 3 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 src/data/item-data.json diff --git a/src/components/ItemGroup.vue b/src/components/ItemGroup.vue index 4fee89b2..69a41e41 100644 --- a/src/components/ItemGroup.vue +++ b/src/components/ItemGroup.vue @@ -1,8 +1,10 @@ diff --git a/src/data/item-data.json b/src/data/item-data.json new file mode 100644 index 00000000..9ac68f67 --- /dev/null +++ b/src/data/item-data.json @@ -0,0 +1,28 @@ +[ + { + "name": "", + "items": [ + { + "title": "", + "description": "", + "provider": "", + "icon": "", + "url": "" + }, + { + "title": "", + "description": "", + "provider": "", + "icon": "", + "url": "" + }, + { + "title": "", + "description": "", + "provider": "", + "icon": "", + "url": "" + } + ] + } +] \ No newline at end of file diff --git a/src/views/Home.vue b/src/views/Home.vue index e35d37ba..a98846a8 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -21,7 +21,7 @@ export default { }, props: { title: { default: 'Panel', type: String }, - subtitle: { default: 'All server management tools in one place', type: String } + subtitle: { default: 'All your server management tools in one place', type: String } } }