Vue Mint UI mt-swipe的使用方式

Mint UI mt-swipe的使用

Mint UI的安裝使用

1、安裝 npm install mint-ui -S

-S表示 --save

2、在main.js中引入mint Ui的css 和 插件 (全局引用)

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

3、在main.js中引入mint Ui的css 和 插件 (按需引用,有的可能要按需引css)

import { Swipe, SwipeItem } from ‘mint-ui';
Vue.component(Swipe.name, Swipe);
Vue.component(SwipeItem.name, SwipeItem);

輪播圖mt-swipe組件使用

<mt-swipe :auto="4000" @change="IMGChange" > 
//auto輪播時間  //輪播圖切換時會觸發 change 事件,參數為切入輪播圖的索引  
//speed 動畫持時(毫秒)  
  <mt-swipe-item v-for="item in bannerArr" :key="item.id">
     <img :src="item.img_url" alt="">
  </mt-swipe-item>
</mt-swipe>
IMGChange(index){  //參數為當前輪播圖的索引 
	console.log(index)
}

使用mint-ui遇到的坑

1.按需引入:文檔上寫

將 .babelrc 修改為:

{
  "presets": [
    ["es2015", { "modules": false }]
  ],
  "plugins": [["component", [
    {
      "libraryName": "mint-ui",
      "style": true
    }
  ]]]
}

實際操作項目報錯,應該改為:

{
  "presets": [
    ["env", {
      "modules": false,
      "targets": {
        "browsers": ["> 1%", "last 2 versions", "not ie <= 8"]
      }
    }],
    "stage-2"
  ],
  "plugins": ["transform-vue-jsx", 
      "transform-runtime",
      ["component", [
        {
          "libraryName": "mint-ui",
          "style": true
        }
    ]]
  ]
}

引入組件報錯

Vue.component(Button.name, Button)
Vue.component(Cell.name, Cell)
/* 或寫為
 * Vue.use(Button)
 * Vue.use(Cell)
 */

發現使用Vue.use(Button) 報錯

解決方案:還是使用Vue.component(Button)

2.Header組件的返回問題

1.將router-link to置空;2.用@click正常處理 

3.cell的click不起作用

解決方法:

v-on:click.native="showSelect()"

原因:

4.mintUI中indicator報錯

1、在main.js中引入mint-ui框架。我用的是按需引用。

import { Indicator } from 'mint-ui'

好瞭,已經引入瞭。但是當我發起請求時,顯示indicator is not defined!呵呵……fuck臉。

百度也沒有什麼具體的因果。但是還好本人也用瞭mint-ui的日期模板。所以就瞎模仿……哈哈哈,上代碼。

2、你得把這個東西綁定給vue,然後才能用!!!!

Vue.prototype.$Indicator = Indicator

3、然後加上官網的寫法,變通一下。

this.$Indicator.open({
	text: 'Loading...',
	spinnerType: 'fading-circle'
});

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: