💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 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" }) ~~~