minor
This commit is contained in:
@@ -29,7 +29,6 @@ import Calendar from '@/components/Calendar'
|
||||
export default {
|
||||
name: 'Home',
|
||||
head () {
|
||||
console.error(this.settings)
|
||||
return {
|
||||
title: this.settings.title,
|
||||
meta: [
|
||||
@@ -38,7 +37,7 @@ export default {
|
||||
{ hid: 'og-description', name: 'og:description', content: this.settings.description },
|
||||
{ hid: 'og-title', property: 'og:title', content: this.settings.title },
|
||||
{ hid: 'og-url', property: 'og:url', content: this.settings.baseurl },
|
||||
// { property: 'og:image', content: this.settings.baseurl }
|
||||
{ property: 'og:image', content: this.settings.baseurl + '/favicon.ico' }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
@@ -60,6 +60,7 @@ export default {
|
||||
<style lang='less'>
|
||||
#list {
|
||||
max-width: 500px;
|
||||
margin: 0 auto;
|
||||
|
||||
.el-timeline {
|
||||
padding-left: 5px;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template lang="pug">
|
||||
el-menu.d-flex.nav(mode='horizontal' router background-color="#222C32")
|
||||
el-menu.d-flex.nav(mode='horizontal' background-color="#222C32")
|
||||
|
||||
nuxt-link(to='/about')
|
||||
el-menu-item(:title="$t('common.info')")
|
||||
@@ -33,8 +33,9 @@
|
||||
el-menu-item(:title="$t('common.share')")
|
||||
v-icon(name='share' color='yellow')
|
||||
|
||||
el-menu-item(v-if='$auth.loggedIn' @click='logout' :title="$t('common.logout')")
|
||||
v-icon(color='red' name='sign-out-alt')
|
||||
nuxt-link(to='#')
|
||||
el-menu-item(v-if='$auth.loggedIn' @click='logout' :title="$t('common.logout')")
|
||||
v-icon(color='red' name='sign-out-alt')
|
||||
|
||||
</template>
|
||||
<script>
|
||||
|
||||
Reference in New Issue
Block a user