03. context参数的用法
  • context对象中有三个参数
    • attrs 用来替代 props:{} 来接受父组件的传值
    • slots 函数时渲染父组件中的槽口内容
    • emit 替代之前的 this.$emit 进行父子组件之间传值

用法如下

/*attrs*/
const app = Vue.createApp({
   template:`
<child app="hello">parent</child>
`
});
app.component("child",{
   setup(props,context){
       const {attrs} = context;
       console.log(attrs.app) // hello
  }
})
const vm = app.mount('#root')
/*slots*/
const app = Vue.createApp({
   template:`
<child>hello worlod</child>
`
})
app.component('child',{
   setup(props,context){
  const {h} = Vue;
      const {slots} = context;
      return ()=>h('div',{},slots.default())
  }
})
/*emit*/
const app = createApp({
   template:`
<child @xxx="parFun"></child>
`,
   methods:{
       parFun(params){
           console.log("接收子组件传值",params)
      }
  }
})
app.component("child",()=>{
   template:`
<div @click="test">child</div>
`,
   setup(props,context){
       const {attrs,slots,emit} = context;
       const test = ()=>{
           emit('xxx',666)
      }
       return {test}
  }
})
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇