具名插槽:当组件中的插槽数量大于1时,我们需要给组件中的slot标签添加name属性指定插槽的名字。
1.定义组件
Vue.component("page-frame",{
template:`<div>
<div id="header" style="width:100%; height:100px; background:pink">
<slot name="s1"></slot>
</div>
<div style="width:100%; height:510px">
<slot name="s2"></slot>
</div>
<div id="footer" style="width:100%; height:40px; background:lightgray">{{cr}}</div>
</div>`
,
props:["title","cr"]
})
2.引用组件:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<div id="container">
<page-frame title="标题" cr="千峰武汉">
//定义一个模板,填充到组件的name=s1的插槽
<template slot="s1">
<button type="button">嘿嘿</button>
</template>
//定义一个模板,填充到组件的name=s1的插槽
<template slot="s2">
<button type="button">哈哈</button>
</template>
</page-frame>
</div>
<script type="text/javascript" src="js/vue.js" ></script>
<script type="text/javascript" src="js/my-components.js" ></script>
<script type="text/javascript">
var vm = new Vue({
el:"#container"
});
</script>
</body>
</html>
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/128137.html