深入组件:Slots 插槽

F12


check: {{msg}}
1. slot 就是组件占位符,表示html自定义标签中间夹着的内容 Add todo done
1.2 slots 还可以包含html元素 Add todo
2 html中还可以放 实例中的变量 value in app: {{msg}}
2.2 但是不能访问组件内部的变量 in html action= {{ action2 }} //这里的警告 warn, 在实例中设置变量 actions2 即可
3 备用内容:如果没有通过标签属性传递值,则js slot标签夹着的部分会作为默认内容 text in html 有内容,就显示内容
3.2
3.3