Files
Yi.Admin/Yi.Vue2.x/src/layouts/default/Footer.vue
2022-04-26 01:34:47 +08:00

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>