溫馨提示×

vue中如何引進組件

vue
清風(fēng)
377
2021-03-15 17:15:33
欄目: 編程語言

vue中如何引進組件

vue中引進組件的步驟:

1.在template中引入組件;

2.在script的第一行用import引入路徑;

3.在component中寫上組件名稱。

示例:

1.在template中引入組件;

export default {

name: 'swiper',

}

2.script標(biāo)簽中引入這個組件。

import swiper from './components/swiper'

3.在component中寫上組件名稱

export default {

components:{

swiper

}

}

0