This commit is contained in:
2018-11-14 18:19:59 +00:00
parent e4991bdade
commit 06312793a9
7 changed files with 31 additions and 19 deletions

View File

@@ -44,12 +44,14 @@
</v-container>
</v-content>
<v-footer color="indigo" app>
<span class="white--text">&copy; 2017</span>
<span class="white--text">{{ version() }}</span>
<span class="white--text">{{ copyright() }}</span>
</v-footer>
</v-app>
</template>
<script>
import aboutInfo from "./utils/aboutinfo";
export default {
name: "App",
data() {
@@ -79,6 +81,12 @@ export default {
},
navItems() {
return this.$store.state.navItems;
},
copyright() {
return aboutInfo.copyright;
},
version() {
return aboutInfo.version;
}
},
props: {