mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-23 21:23:28 +03:00
Enables the user to add raw HTML and inline CSS into the footer, Re: #28
This commit is contained in:
parent
866f23d6ba
commit
6476afbfa0
@ -29,7 +29,7 @@ All fields are optional, unless otherwise stated.
|
|||||||
**`title`** | `string` | Required | Your dashboard title, displayed in the header and browser tab
|
**`title`** | `string` | Required | Your dashboard title, displayed in the header and browser tab
|
||||||
**`description`** | `string` | _Optional_ | Description of your dashboard, also displayed as a subtitle
|
**`description`** | `string` | _Optional_ | Description of your dashboard, also displayed as a subtitle
|
||||||
**`navLinks`** | `array` | _Optional_ | Optional list of a maximum of 6 links, which will be displayed in the navigation bar. See [`navLinks`](#pageinfonavlinks-optional)
|
**`navLinks`** | `array` | _Optional_ | Optional list of a maximum of 6 links, which will be displayed in the navigation bar. See [`navLinks`](#pageinfonavlinks-optional)
|
||||||
**`footerText`** | `string` | _Optional_ | Text to display in the footer (note that this will override the default footer content)
|
**`footerText`** | `string` | _Optional_ | Text to display in the footer (note that this will override the default footer content). This can also include HTML and inline CSS
|
||||||
|
|
||||||
#### `pageInfo.navLinks` _(optional)_
|
#### `pageInfo.navLinks` _(optional)_
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<!-- User Footer -->
|
<!-- User Footer -->
|
||||||
<footer v-if="text && text !== ''">{{text}}</footer>
|
<footer v-if="text && text !== ''" v-html="text"></footer>
|
||||||
<!-- Default Footer -->
|
<!-- Default Footer -->
|
||||||
<footer v-else>
|
<footer v-else>
|
||||||
Developed by <a :href="authorUrl">{{authorName}}</a>.
|
Developed by <a :href="authorUrl">{{authorName}}</a>.
|
||||||
@ -14,6 +14,7 @@
|
|||||||
export default {
|
export default {
|
||||||
name: 'Footer',
|
name: 'Footer',
|
||||||
props: {
|
props: {
|
||||||
|
text: String,
|
||||||
authorName: { type: String, default: 'Alicia Sykes' },
|
authorName: { type: String, default: 'Alicia Sykes' },
|
||||||
authorUrl: { type: String, default: 'https://aliciasykes.com' },
|
authorUrl: { type: String, default: 'https://aliciasykes.com' },
|
||||||
license: { type: String, default: 'MIT' },
|
license: { type: String, default: 'MIT' },
|
||||||
@ -21,7 +22,6 @@ export default {
|
|||||||
date: { type: String, default: `${new Date().getFullYear()}` },
|
date: { type: String, default: `${new Date().getFullYear()}` },
|
||||||
showCopyright: { type: Boolean, default: true },
|
showCopyright: { type: Boolean, default: true },
|
||||||
repoUrl: { type: String, default: 'https://github.com/lissy93/dashy' },
|
repoUrl: { type: String, default: 'https://github.com/lissy93/dashy' },
|
||||||
text: String,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user