有時候使用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 >