0.0.6 • Published 4 years ago

vue-wxqlogo v0.0.6

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

vue-wxqlogo

微信头像“暂时无法查看”异常处理。 demo

Installation

$ npm install vue-wxqlogo

OR

$ yarn add vue-wxqlogo

Usage

main.js:

import Vue from 'Vue'
import VueWxQlogo from 'vue-wxqlogo'
import VueLazyload from 'vue-lazyload'

/**
 * options:
 * 1. loadingImg | <string>
 * 2. defaultImg | <string|(key: any)=>string>
 */
Vue.use(VueWxQlogo, {
  loadingImg: require('@/assets/imgs/loading'),
  defaultImg (key) {
    return [
      require('@/assets/imgs/logo/1.png'),
      require('@/assets/imgs/logo/2.png'),
      require('@/assets/imgs/logo/3.png'),
    ][Number(key) % 3]
  }
})
/**
 * wxqlogo in VueLazyload
 */
Vue.use(VueLazyload, {
  ...lazyOptions,
  adapter: {
    loaded ({ el, src }) {
      /**
       * Vue.prototype.$loadWxqlogo
       * 1. src | <string>
       * 2. key | <any>
       * 3. handler | <(result: string)=>void>
       */
      Vue.prototype.$loadWxqlogo(src, key, (result) => {
        el.setAttribute('src', result)
      })
    }
  }
})

/**
 * async-await (won't return 'loading' status)
 */
async function fun () {
  const result = await Vue.prototype.$loadWxqlogo(src, key)
  commit('SET_AVATAR', result)
}

template:

<div>
  <!-- string -->
  <img v-wxqlogo="img.src" >
  <!-- { src: string, key: any } -->
  <img v-wxqlogo="{
      src: img.src,
      key: userId
    }" >
  <img v-lazy="img.src" >
</div>
0.0.6

4 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago