lxf
2025-04-19 87ac0ed86b97cc547d49fcc871410dc120cbd9ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<template>
  <global-footer class="footer custom-render">
    <template v-slot:links>
      <!-- <a href="https://www.github.com/vueComponent/pro-layout" target="_blank">Pro Layout</a>
      <a href="https://www.github.com/vueComponent/ant-design-vue-pro" target="_blank">Github</a>
      <a href="https://www.github.com/sendya/" target="_blank">@Sendya</a> -->
    </template>
    <template v-slot:copyright>
      <!-- <a href="https://github.com/vueComponent" target="_blank">vueComponent</a> -->
    </template>
  </global-footer>
</template>
 
<script>
import { GlobalFooter } from '@ant-design-vue/pro-layout'
 
export default {
  name: 'ProGlobalFooter',
  components: {
    GlobalFooter
  }
}
</script>