Blame view

examples/routers/affix.vue 597 Bytes
c755733a   梁灏   support Grid
1
2
3
4
5
6
7
8
9
10
11
  <style>
      body{
          /*height: 2000px;*/
      }
      .demo-affix{
          width: 100px;
          height: 30px;
          background: #f60;
          color: #fff
      }
  </style>
1f561319   梁灏   update webpack co...
12
  <template>
87c343e4   崔琼雪   增加逻辑:
13
  <div>
1f561319   梁灏   update webpack co...
14
      <Affix>
87c343e4   崔琼雪   增加逻辑:
15
          <div class="demo-affix">固定在最顶部</div>
1f561319   梁灏   update webpack co...
16
      </Affix>
87c343e4   崔琼雪   增加逻辑:
17
18
      <div v-for="(item,index) in arr">{{item}}</div>
  </div>
1f561319   梁灏   update webpack co...
19
20
21
  </template>
  <script>
      export default {
87c343e4   崔琼雪   增加逻辑:
22
23
24
25
26
27
28
29
30
31
          data(){
              return {
                  arr: []
              }
          },
          created(){
              for(let i = 0 ; i < 100 ; i++){
                  this.arr.push(i);
              }
          }
1f561319   梁灏   update webpack co...
32
33
      }
  </script>