在main.ts 中添加

Vue.component('sayHello',{   render(h){       return h('p',{         style:{           color:'red'         }       },`早上好`)//格式是`${this.userName}`     },   data(){     return{       userName:'小明'     }   } })
注意参数说明:h(标签,属性,值)

在各组件中使用

<sayHello></sayHello>

 

相关文章:

  • 2021-11-21
  • 2022-12-23
  • 2021-07-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案