Blame view

node_modules/mpvue-zanui/src/pages/zan_loadmore/index.vue 467 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <template>
    <div class="container">
  
      <div class="doc-title zan-hairline--bottom">LOADMORE</div>
  
      <ZanLoadmore v-bind="{ loading: true }" />
      <ZanLoadmore v-bind="{ nodata: true }" />
      <ZanLoadmore v-bind="{ nomore: true }" />
    </div>
  </template>
  
  <script>
    import ZanLoadmore from '../../components/zan/loadmore'
    export default {
      components: {
        ZanLoadmore
      },
      data () {
        return {}
      }
    }
  </script>
  <style  scoped>
  </style>