mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-09 02:36:36 +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>
|