Pagination
pagination.type
Pagination config defines the type of pagination layout.
default value
'dispatch'
Options
dispatch
pagination buttons use javascript function to display the results on the next page
link
pagination buttons are HTML anchors tags with
href
to the next page. This option is used for SEO optimizations:const config = { ... pagination: { type: 'link' }, ... }; var widget = HawksearchVue.createWidget(component, { config: config}); HawksearchVue.initialSearch(widget);
Â