轻量、高性能轮播插件。目前支持 无缝衔接自动轮播、无限轮播、手势轮播

2019-08-27 14:39:39 阅读:3 编辑
<template>
    <div>
        <Swiper v-if="banner.length> 0">
            <Slide v-for="(item,index) in banner" :key="index">
                <a :href="item.bind">
                    <img :src="item.main_image" alt=""class="slider-img">
                </a>
            </Slide>
        </Swiper>
    </div>
</template>
<script>

    export default {data: function () {
            return {
                banner: [
                    {
                        main_image: 'https://images.unsplash.com/photo-1551334787-21 e6 bd3 ab135?w=640',
                        bind:'/',
                    },
                    {
                        main_image: 'https://images.unsplash.com/photo-1551446591-142875 a901 a1?w=640',
                        bind:'/',
                    },

                ]
            }
        }
    }

</script>