Blame view

src/components/carousel/carousel-item.vue 880 Bytes
6c9acb08   Rijn   initialize carousel
1
  <template>
bb71140e   梁灏   support Carousel
2
      <div :class="prefixCls" :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
          componentName: 'carousel-item',
bb71140e   梁灏   support Carousel
9
          name: 'CarouselItem',
65c64ce9   Rijn   carousel basic po...
10
11
12
13
          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
              }
          },
bb71140e   梁灏   support Carousel
27
28
          mounted () {
              // todo while
373dfb3c   Rijn   removed observer
29
30
31
              this.$parent.slotChange();
          },
          beforeDestroy () {
bb71140e   梁灏   support Carousel
32
              // todo while
373dfb3c   Rijn   removed observer
33
              this.$parent.slotChange();
8f4e2cf0   Rijn   update pos when s...
34
          }
6c9acb08   Rijn   initialize carousel
35
36
      };
  </script>