FxFooter 页脚
ICP 备案号 + 版权信息。纯 UI,数据由 props 传入。
基础用法
vue
<FxFooter icp="晋ICP备xxxx号-1" copyright="© 2025 fuxishi" />1
vue
<script setup lang="ts">
import { FxFooter } from "@fx/layouts"
import { ICP, COPYRIGHT } from "@/utils"
</script>
<template>
<FxFooter :icp="ICP" :copyright="COPYRIGHT" />
</template>1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
Attributes
| 参数 | 说明 | 类型 | 默认值 |
|---|---|---|---|
| icp | ICP 备案号(不传则不渲染链接) | string | — |
| copyright | 版权信息 | string | — |
