Blame view

src/components/carousel/carousel-item.vue 806 Bytes
6c9acb08   Rijn   initialize carousel
1
  <template>
bfc11079   Rijn   updated autoplay ...
2
      <div :class="prefixCls" v-bind:style="styles"><slot></slot></div>
6c9acb08   Rijn   initialize carousel
3
4
5
6
7
  </template>
  <script>
      const prefixCls = 'ivu-carousel-item';
  
      export default {
65c64ce9   Rijn   carousel basic po...
8
9
10
11
12
13
          componentName: 'carousel-item',
  
          data () {
              return {
                  prefixCls: prefixCls,
                  width: 0,
9cd69375   Rijn   added height props
14
                  height: 'auto',
65c64ce9   Rijn   carousel basic po...
15
16
17
18
19
20
21
                  left: 0
              };
          },
          computed: {
              styles () {
                  return {
                      width: `${this.width}px`,
9cd69375   Rijn   added height props
22
                      height: `${this.height}`,
65c64ce9   Rijn   carousel basic po...
23
                      left: `${this.left}px`
50f4ac70   Rijn   Merge branch 'mas...
24
                  };
65c64ce9   Rijn   carousel basic po...
25
26
              }
          },
8f4e2cf0   Rijn   update pos when s...
27
          compiled () {
373dfb3c   Rijn   removed observer
28
29
30
31
              this.$parent.slotChange();
          },
          beforeDestroy () {
              this.$parent.slotChange();
8f4e2cf0   Rijn   update pos when s...
32
          }
6c9acb08   Rijn   initialize carousel
33
34
      };
  </script>