# Footer 页脚

# 基本用法

<wx-footer>Copyright © 2018~2020 alex</wx-footer>

# 带链接

<wx-footer :links="[{to: {path: '/'}, text: '底部链接'}, {to: {path: '/'}, text: '底部链接'}]">Copyright © 2018~2020 alex</wx-footer>

# 固定底部

<wx-footer fixed>Copyright © 2018~2020 alex</wx-footer>
参数 说明 类型 可选值 默认值
links 链接组 Array - []
fixed 是否固定页面底部 Boolean - false

links 格式说明

[
  { to: "", text: "" },
  { to: {path: ""}, text: "" }
]
back
页脚