I have no life

This commit is contained in:
Alicia Sykes 2019-07-20 23:30:57 +01:00
parent b7b8addd83
commit 468026a251
3 changed files with 35 additions and 5 deletions

View File

@ -1,8 +1,10 @@
<template>
<div class="item-group-outer">
<h2>{{ title }}</h2>
<div class="item-group-inner">
<span v-if="!items || items.length < 1" class="no-items">No Items to Show Yet</span>
<div class="item-group-outer">
<h2>{{ title }}</h2>
<div class="item-group-inner">
<span v-if="!items || items.length < 1" class="no-items">
No Items to Show Yet
</span>
</div>
</div>
</template>

28
src/data/item-data.json Normal file
View File

@ -0,0 +1,28 @@
[
{
"name": "",
"items": [
{
"title": "",
"description": "",
"provider": "",
"icon": "",
"url": ""
},
{
"title": "",
"description": "",
"provider": "",
"icon": "",
"url": ""
},
{
"title": "",
"description": "",
"provider": "",
"icon": "",
"url": ""
}
]
}
]

View File

@ -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 }
}
}
</script>