liuxiaolong
2019-05-06 8700cf1dc46c350371d865532c2914595187788e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<style src="./ladda.scss" lang="scss"></style>
 
<script>
import * as Ladda from 'ladda'
 
export default {
  name: 'ladda-btn',
  props: {
    loading: {
      default: false
    },
    tag: {
      type: String,
      default: 'button'
    }
  },
  render (createElement) {
    const attrs = this.tag === 'button' ? { type: 'button' } : {}
 
    return createElement(
      this.tag,
      { attrs },
      this.$slots.default
    )
  },
  beforeDestroy () {
    if (!this.ladda) return
    this.ladda.remove()
    this.ladda = null
  },
  mounted () {
    this.ladda = Ladda.create(this.$el)
  },
  watch: {
    loading (value) {
      if (!this.ladda) return
      if (typeof value === 'boolean') {
        this.ladda[value ? 'start' : 'stop']()
      } else if (typeof value === 'number') {
        if (!this.ladda.isLoading()) {
          this.ladda.start()
        }
 
        this.ladda.setProgress(value)
      }
    }
  }
}
</script>