1.在Page組件的ref屬性中設置一個id值例如:pages,在vue實例中是用$refs['pages']操做該組件便可,若是不明白的能夠去vue官網看refs的介紹vue
<template> <div> <Page ref="pages" :total="total" show-total @on-change='paging'/> </div> </template> //分頁初始化爲第一頁 this.$nextTick(function(){ this.$refs['pages'].currentPage = 1; })