Footer 组件
优质
小牛编辑
133浏览
2023-12-01
使用指南
引入方式
import { Footer } from 'feart';
components: {
'fe-footer': Footer,
},
代码演示
基础用法
<fe-footer :urlData="urlData">
<p>© 2017-{{ new Date().getFullYear() }} Nnuo.com. All rights reserved</p>
</fe-footer>
data() {
return {
urlData: [
{
href: 'https://jss.com.cn/',
name: '诺诺服务',
},
{
href: 'https://www.axnsc.com/',
name: '诺诺商城',
},
],
};
},
API
参数 | 说明 | 类型 | 默认值 | 可选值 |
---|---|---|---|---|
urlData | 用于展示 url 的数组 格式:[{name:'',href:''}] | Array | [] | - |
- | - | - | - | - |
Slots
Slot 名 | 说明 | 备注 |
---|---|---|
default | copyright 的内容插槽 | - |