您好,登錄后才能下訂單哦!
這個功能我感覺在任何項目中都會涉及到,今天我就把我的實現方法跟大家分享一下,有不對的地方還請指出,我好更新。
下面是整體代碼,我把輪播圖單獨做了一個組件,大家可以拿來就用,具體代碼如下:
<template> <div class="content"> <div class="focus"> <!-- focus begin --> <swiper :options="swiperOption"> <!-- map是數組 這里我們用v-for把數據循環出來 --> <swiper-slide v-for="item in map"> <a :href="item.i_route" rel="external nofollow" target="_blank">![](item.i_url)</a> </swiper-slide> <div class="swiper-pagination" slot="pagination"></div> </swiper> <!-- focus end --> </div> </div> </template> <script> //下面我們引用兩個插件,當然,在使用之前請先安裝 //安裝方法:npm install vue-awesome-swiper --save import VueAwesomeSwiper from 'vue-awesome-swiper' import { swiper, swiperSlide } from 'vue-awesome-swiper' export default { data() { return { swiperOption: { autoplay: 5000, initialSlide: 1, loop: true, pagination: '.swiper-pagination', paginationClickable: true, onSlideChangeEnd: swiper => { //console.log('onSlideChangeEnd', swiper.realIndex) } } } }, mounted () { this.bannerInfo(); }, components: { swiper, swiperSlide }, methods: { //輪播圖初始化 bannerInfo() { //通過接口獲取圖片數據 this.$fetch('get/image/list').then(res => { if(res.errCode == 200) { this.map = res.errData; } }); } } } </script>
以上就是實現輪播圖的全部代碼,有興趣的朋友可以試試看啦,希望大家繼續關注我們的網站!想要學習VUE的可以繼續關注本站。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。