Element--pagination 默认值

pagination 默认值

 <el-pagination
        v-show="showPage"
        ref="pagination"
        background
        style="margin-top:5px;margin-bottom:10px;text-align:right"
        :current-page="currentPage"
        :page-sizes="[10, 20, 30, 40]"
        :page-size="pageSize"
        layout="total, sizes, prev, pager, next, jumper"
        :total="total"
        @size-change="handleSizeChange"
        @current-change="handleCurrentChange"
      />
  this.$set(this.$refs.pagination, 'internalCurrentPage', parseInt(page))
          this.$set(this.$refs.pagination, 'internalPageSize', parseInt(size))

版权声明:本文为weixin_43047070原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。