<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>Title</title></head><body><divid="vue"><todo><todo-titleslot="todo-title":title="title"></todo-title><todo-itemsslot="todo-items"v-for="item in todoitems":item="item"></todo-items></todo></div><scriptsrc="https://cdn.jsdelivr.net/npm/vue@2.5.21/dist/vue.min.js"></script><scriptsrc="https://unpkg.com/axios/dist/axios.min.js"></script><scripttype="text/javascript">
Vue.component("todo",{//定义slot插槽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:['item'],template:'<li>{{item}}</li>'});var vm =newVue({el:"#vue",data:{todoitems:['说C','说java'],title:"h",}});</script></body></html>