這篇文章主要介紹了vue.js整合mint-ui裡的輪播圖的方法,首先我們需要初始化vue項目,然後安裝mint-ui。具體內容詳情大家透過學習
初始化vue專案
#npm install -g vue-cli vue init webpack demo # 中间会让你选npm yarn 等来安装依赖,我选的是yarn,因为它快些
安裝mint-ui
yarn add mint-ui
mint-ui裝好了,還要配置一下babel,方法跟著mint-ui的官方文檔來配置就可以了
下面是我配置好的.babelrc 文件,啟動的時候會報跟es2015相關的錯,裝一下babel-preset-es2015 就好了
{ "presets": [ ["env", { "modules": false, "targets": { "browsers": ["> 1%", "last 2 versions", "not ie <= 8"] } }], "stage-2", ["es2015", { "modules": false }] ], "plugins": [["component", [ { "libraryName": "mint-ui", "style": true } ]],"transform-vue-jsx", "transform-runtime"], "env": { "test": { "presets": ["env", "stage-2", "es2015"], "plugins": ["transform-vue-jsx", "transform-es2015-modules-commonjs", "dynamic-import-node"] } } }
集成
打開創建的vue項目demo,在src裡找到components/HelloWorld.vue 文件,然後將內容換成下面內容
<template> <p> <mt-swipe :auto="2000"> <mt-swipe-item v-for="item in items" :key="item.id"> <a :href="item.href" rel="external nofollow" > <img :src="item.url" class="img"/> <span class="desc"></span> </a> </mt-swipe-item> </mt-swipe> </p> </template> <script> import {Swipe, SwipeItem} from 'mint-ui' import 'mint-ui/lib/style.css' export default { components: { 'mt-swipe': Swipe, 'mt-swipe-item': SwipeItem }, data () { return { items: [{ title: '你的名字', href: 'http://google.com', url: 'http://localhost:8080/static/img1.png' }, { title: '我的名字', href: 'http://baidu.com', url: 'http://localhost:8080/static/img2.png' }] } } } </script> <style scoped> img { width: 100%; } .mint-swipe { height: 218px; } .desc { font-weight: 600; opacity: .9; padding: 5px; height: 20px; line-height: 20px; width: 100%; color: #fff; background-color: gray; position: absolute; bottom: 0; } </style>
找兩張圖片,名字分別是img1.png , img2.png , 放在demo項目的static裡,然後啟動專案
npm run dev
開啟瀏覽器:http://localhost:8080/
##注意
#1.如果發現文字都是居中的可以找到檔案App.vue 把裡面的居中css程式碼去掉就好了#1.如果頁面有內邊距設定body 的樣式margin: 0 auto;1.頁面裡用的時候,必須要給類別樣式一個高度,要不然圖片不出來.mint-swipe { height: 218px; }上面是我整理給大家的,希望今後會對大家有幫助。 相關文章:以上是在vue.js中如何整合mint-ui裡的輪播圖的詳細內容。更多資訊請關注PHP中文網其他相關文章!