Files
new-cashier/jeepay-ui-agent/src/components/GlobalFooter/index.vue
2024-05-23 14:39:33 +08:00

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>