1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-25 05:43:32 +03:00
guide/front/client/components/AFooter.vue
Gigiman c14cd70474
Category info edit (#268)
* category info editing dialog added

* square icon bug fix

* added service for updating category info

* added action to update category info

* update category info functionality added

* category info edit functionality finished

* small change

* small change

* small changes

* if else to switch refactor

* refactor checkbox to array to v-model with array

* minor checkbox fix

* changed: validation rule renamed

* refactoring

* parsing selected sections from api
2019-03-18 14:48:07 +05:00

57 lines
996 B
Vue

<template>
<v-footer
height="auto"
color="lighten-1"
>
<v-layout
justify-center
align-center
row
wrap
>
<span class="mr-3">
made by
<a-link
openInNewTab
url="https://aelve.com/"
>
Aelve
</a-link>
</span>
<span class="mr-3">
<a-link
openInNewTab
url="https://github.com/aelve/guide"
class="footer-link"
>
source
</a-link>
on GitHub
</span>
<span>
licensed under
<a-link
openInNewTab
url="http://guide.aelve.com:4801/license"
>
CC+ BY-SA 4.0
</a-link>
</span>
</v-layout>
</v-footer>
</template>
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
@Component
export default class AFooter extends Vue { }
</script>
<style scoped>
.footer-link {
display: inline-block;
}
</style>