Taro(V2.0.5)中引入Vant Weapp瞎疼,(需下載資源到項目中:大小約322KB)
需如下幾步:
1.在/src/components下新建文件夾vant-weapp
2.在github上找到Vant-weapp下載文件包别伏,將對應(yīng)的dist文件夾下內(nèi)容復制到新建的vant-weapp文件夾下坪它。
(下載vant-weapp方式捶牢,編輯器終端輸入:git clone https://github.com/youzan/vant-weapp.git?)
3.在Pages或components對應(yīng)文件的config.usingComponents中剧劝,配置每個頁面所需要的組件陆赋。(注:無法在app.js中進行全局注冊組件肥照。)
例:
config = {
????????usingComponents: {
????????????????"van-icon":"../../components/vant-weapp/icon/index"
????????}
}
4.在使用Vant-weapp組件后烦衣,taro會自動將相應(yīng)的組件復制一份到dist/components下歹河,而Vant-weapp的組件還依賴工具庫/src/components/vant-weapp/wxs掩浙,該工具庫taro不會自動復制到dist中。所以秸歧,我們需要在/config/index.js文件下的config配置中新增copy.patterns厨姚,讓其在編譯時,自動復制到dist對應(yīng)目錄下键菱。
copy: {
????????patterns: [? ? ??
????????????????{from:'src/components/vant-weapp/wxs/',to:'dist/components/vant-weapp/wxs/'}
????????? ],
????????options: {}
}
5.對Taro進行重新編譯(例:npm run build:weapp)
*由于Vant-weapp的樣式使用的單位是px谬墙,所以會被taro編譯成rpx。可以通過修改/config/index.js文件中的config.mini.postcss.pxtransform.selectorBlackList不讓其單位轉(zhuǎn)換经备。
pxtransform: {
????????enable:true,
????????config: {},
????????selectorBlackList: [
????????????????/^.van-.*?$/,??
?????????]
}
注:Taro編譯器無法自動將用到組件的.wxs文件移動到/dist相應(yīng)目錄下(**開發(fā)者工具會報錯**)拭抬。
需在config配置中新增copy.patterns配置
例子:
copy: {
????????patterns: [? ? ??
????????????????{from:'src/components/vant-weapp/wxs/',to:'dist/components/vant-weapp/wxs/'},? ? ?
? ? ? ? ? ? ? ? {from:'src/components/vant-weapp/sticky',to:'dist/components/vant-weapp/sticky'},? ? ??
????????????????{from:'src/components/vant-weapp/tabs',to:'dist/components/vant-weapp/tabs'}??
?????????],
????????options: {}
}