Open thumbnail in Vue Pdfviewer component

16 Mar 20231 minute to read

The PDF Viewer library allows you to open the thumbnail of the PDF document using the openThumbnailPanel() method.

The following steps are used to open the thumbnail of the PDF Document.

Step 1: Follow the steps provided in the link to create simple PDF Viewer sample in Vue.

Step 2: Add the following code snippet to open the thumbnail in the resizing event of splitter.


onSplitterResize: function () {
  var viewer = document.getElementById("pdfviewer").ej2_instances[0];
  viewer.updateViewerContainer();
  viewer.thumbnailViewModule.openThumbnailPane();
  debugger;
},

Find the Sample how to open thumbnail