ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## vue插槽语法基本和小程序一样 好处:使用[插件slot]()父组件可以灵活的向子组件传递html ~~~ //HTML <div id="app"> <child content="Dell"> <p slot="inner">hello</p> </child> <child content="Lee"></child> </div> ~~~ ~~~ Vue.component("child",{ template:"<div><slot name='inner'></slot></div>" }) new Vue({ el:"#app" }) ~~~