[Mint-UI] mt-swipe根本显示不出来,按照官方Demo中的例子都无法显示。

发布于 2022-09-11 15:10:18 字数 1531 浏览 27 评论 0

使用Vue 2.5 + Mint-UI最新版,使用mt-swipe做一个顶部图片轮播。可是啥也显示不出来。
代码:
main.js

import Vue from 'vue'
import VueRouter from 'vue-router'
import App from './App.vue'
import router from './router'

Vue.use(VueRouter)

import Mint from 'mint-ui';
import 'mint-ui/lib/style.css';
Vue.use(Mint);

Vue.config.productionTip = false

new Vue({
    router: router,
    render: h => h(App)
}).$mount('#app')

Home.vue

<template>
   <div>
       <p>Start here</p>
       <mt-swipe :auto="4000">
           <mt-swipe-item>
               <div class="swipe_div">这是一段话</div>
           </mt-swipe-item>
           <mt-swipe-item>
               <div class="swipe_div">这是第二段话</div>
           </mt-swipe-item>
           <mt-swipe-item>
               <div class="swipe_div">这是第三段话</div>
           </mt-swipe-item>
       </mt-swipe>
       <p>end here</p>
   </div>
</template>

<script>
    export default {
        name: "Home",
    };
</script>

<style scoped>
    .swipe_div {
        color: red;
        background-color: cadetblue;
        width: 400px;
        height: 200px;
    }
    img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
</style>

输出结果:
图片描述

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

没︽人懂的悲伤 2022-09-18 15:10:18

还需要给mt-swipe容器加上高度
图片描述

图片描述

牛↙奶布丁 2022-09-18 15:10:18

mt-swipe的高度没有定义,导致Height默认为0 加上就好了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文