插槽slot
Posted hellowen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插槽slot相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="app">
<todo>
<todo-title slot="todo-title" :title="title"></todo-title>
<todo-items slot="todo-items" v-for="item in todoItems" :items="item"></todo-items>
</todo>
</div>
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
<script>
//slot插槽
Vue.component("todo",{
template:‘<div> <slot name="todo-title"></slot> <ul> <slot name="todo-items"></slot> </ul> </div>‘
});
Vue.component("todo-title",{
props:[‘title‘],
template: ‘<div>{{title}}</div>‘
});
Vue.component("todo-items",{
props:[‘items‘],
template: ‘<li>{{items}}</li>‘
});
var vm = new Vue({
el:"#app",
data:{
title:"我是标题",
todoItems:[‘a‘,‘b‘,‘c‘]
}
})
</script>
</body>
</html>
效果如下:
以上是关于插槽slot的主要内容,如果未能解决你的问题,请参考以下文章