mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
23 lines
302 B
Vue
23 lines
302 B
Vue
<template>
|
|
<v-footer
|
|
id="default-footer"
|
|
color="transparent"
|
|
absolute
|
|
app
|
|
inset
|
|
>
|
|
<links />
|
|
</v-footer>
|
|
</template>
|
|
|
|
<script>
|
|
// Components
|
|
import Links from '@/components/Links'
|
|
|
|
export default {
|
|
name: 'DefaultFooter',
|
|
|
|
components: { Links },
|
|
}
|
|
</script>
|