index options added

This commit is contained in:
carodej
2020-07-13 09:49:25 +02:00
parent a74c1c7b6e
commit 2ae60003d6
50 changed files with 1106 additions and 135 deletions

View File

@@ -1,7 +1,7 @@
<template>
<div class="page-wrapper large hero-screenshot">
<img class="hero-light" src="/assets/images/vuefilemanager-screenshot-light.png" alt="VueFileManager application">
<img class="hero-dark" src="/assets/images/vuefilemanager-screenshot-dark.png" alt="VueFileManager application">
<img class="hero-light" src="/assets/images/vuefilemanager-screenshot-light.png" :alt="config.app_name">
<img class="hero-dark" src="/assets/images/vuefilemanager-screenshot-dark.png" :alt="config.app_name">
<div class="icons">
<link-icon size="20" class="icon"></link-icon>
@@ -22,6 +22,7 @@
</template>
<script>
import { mapGetters } from 'vuex'
import {
FolderPlusIcon,
HardDriveIcon,
@@ -36,7 +37,7 @@
} from 'vue-feather-icons'
export default {
name: 'IndexNavigation',
name: 'IndexHeroScreenshot',
components: {
FolderPlusIcon,
HardDriveIcon,
@@ -48,7 +49,10 @@
LinkIcon,
StarIcon,
EyeIcon,
}
},
computed: {
...mapGetters(['config']),
},
}
</script>