美文网首页
ajax使用时header配置 props + slot

ajax使用时header配置 props + slot

作者: JX灬君 | 来源:发表于2021-07-05 16:53 被阅读0次

1.props传参
// header组件
title+backurl
props: ["title", "backurl"],
// Home页面
<headtop title="SFA"></headtop>

2.slot插槽
// header组件
<div class="th-r">
<slot name="r">右侧插槽</slot>
</div>
// Home页面
<headtop title="SFA">
<span slot="r" class="icon iconfont icon-user"></span>
</headtop>
// 配合路由router-link进行跳转
<headtop title="SFA">
<router-link to="/user" slot="r" class="icon iconfont icon-user">
</router-link>
</headtop>

相关文章