21 lines
416 B
Vue
21 lines
416 B
Vue
<template>
|
|
<global-footer class="footer custom-render">
|
|
<template v-slot:links>
|
|
</template>
|
|
<template v-slot:copyright>
|
|
<a href="http://www.jeequan.com" target="_blank">@计全科技</a>
|
|
</template>
|
|
</global-footer>
|
|
</template>
|
|
|
|
<script>
|
|
import { GlobalFooter } from '@ant-design-vue/pro-layout'
|
|
|
|
export default {
|
|
name: 'ProGlobalFooter',
|
|
components: {
|
|
GlobalFooter
|
|
}
|
|
}
|
|
</script>
|