Hi Lu Tuan,
Thanks for contacting Syncfusion support.
We checked your query and would like to let you know that this problem occurs if the style files for the Pager component are not referenced properly in the application. To resolve your issue we suggest you refer the style files as demonstrated in the below code snippet,
App.vue
<template>
<div id="app">
<ejs-pager :pageSize="1" :pageCount="3" :totalRecordsCount="20">
</ejs-pager>
</div>
</template>
<script>
import Vue from "vue";
import { PagerPlugin } from "@syncfusion/ej2-vue-grids";
Vue.use(PagerPlugin);
export default {
data() {
return {};
},
};
</script>
<style>
</style> |
Please find the below sample for more information.
1. Have you referenced the Syncfusion theme files in your application?
2. Explain your problem scenario with pictorial representation or video demonstration.
3. Syncfusion package version.
4. If possible please replicate the problem with our above attached sample.
Let us know if you have any concerns.
Regards,
Shalini M.