您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么用vue整合mint-ui實現輪播圖”,在日常操作中,相信很多人在怎么用vue整合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> <div> <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> </div> </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是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創建可維護性和可測試性更強的代碼庫,Vue允許可以將一個網頁分割成可復用的組件,每個組件都包含屬于自己的HTML、CSS、JavaScript,以用來渲染網頁中相應的地方,所以越來越多的前端開發者使用vue。
到此,關于“怎么用vue整合mint-ui實現輪播圖”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。