s/element/vuetify :D

This commit is contained in:
les
2020-07-25 21:41:22 +02:00
parent 59811e580c
commit 2758541df0
33 changed files with 1762 additions and 1340 deletions

15
components/Footer.vue Normal file
View File

@@ -0,0 +1,15 @@
<template lang="pug">
v-footer(app absolute)
v-btn(text href='https://gancio.org') Gancio {{settings.version}}
v-btn(v-if='settings.enable_federation' text rel='me' @click.prevent='showFollowMe=true') follow me
v-btn(nuxt to='/about' text) about
v-btn(href='https://blog.gancio.org' text) blog
v-btn(href='https://framagit.org/les/gancio' text) source
</template>
<script>
import { mapState } from 'vuex'
export default {
computed: mapState(['settings'])
}
</script>