[Mint-UI] mt-swipe根本显示不出来,按照官方Demo中的例子都无法显示。
使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还需要给mt-swipe容器加上高度
是
mt-swipe
的高度没有定义,导致Height默认为0 加上就好了