逻辑:父组件调用子组件的时候,给子组件传了一个插槽,这个插槽叫做作用域插槽,作用域插槽必须是template开头和结尾的一个内容,同时这个插槽要声明(slot-scope)我要接收的数据都放在哪?都放在props里,还要告诉子组件一个模板的信息,也就是接收到props应该怎么展示(h1)。
应用场景:当子组件做循环,它的内容应该由外部传进来的时候,这个时候我们就用作用域插槽。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>17Vue中 的作用域插槽.html</title>
<script src="./vue.js"></script>
</head>
<body>
<div id="app">
<child>
<template slot-scope="props">
<li>{{props.item}}hello</li>
</template>
</child>
</slot>
</div>
<script>
Vue.component('child', {
data: function () {
return {
list: [1, 2, 3, 4, 5]
}
},
template: `
<div>
<ul>
<slot v-for="item of list" :item=item>
</ul>
</div>
`
})
var vm = new Vue({
el: '#app'
})
</script>
</body>
</html>
网友评论