有时候使用Vue组件需要在页面中多次使用,比如vant的button组件,有时需要显示两个

 

<van-button type="default">默认按钮</van-button>
<van-button type="primary">主要按钮</van-button>

 

但这样的话,第一个按钮会无法显示,使用如下方式就可以解决~

<component is="van-button" type="default">默认按钮</component >
<component is="van-button" type="primary">主要按钮</component >

 

相关文章:

  • 2022-02-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-28
  • 2022-12-23
猜你喜欢
  • 2022-03-11
  • 2022-12-23
  • 2022-12-23
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
  • 2021-07-08
相关资源
相似解决方案