mirror of https://github.com/Lissy93/dashy.git
I have no life
This commit is contained in:
parent
b7b8addd83
commit
468026a251
|
@ -1,8 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="item-group-outer">
|
<div class="item-group-outer">
|
||||||
<h2>{{ title }}</h2>
|
<h2>{{ title }}</h2>
|
||||||
<div class="item-group-inner">
|
<div class="item-group-inner">
|
||||||
<span v-if="!items || items.length < 1" class="no-items">No Items to Show Yet</span>
|
<span v-if="!items || items.length < 1" class="no-items">
|
||||||
|
No Items to Show Yet
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "",
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"provider": "",
|
||||||
|
"icon": "",
|
||||||
|
"url": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"provider": "",
|
||||||
|
"icon": "",
|
||||||
|
"url": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title": "",
|
||||||
|
"description": "",
|
||||||
|
"provider": "",
|
||||||
|
"icon": "",
|
||||||
|
"url": ""
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
|
@ -21,7 +21,7 @@ export default {
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
title: { default: 'Panel', type: String },
|
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>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue