This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div class="pdfjs-viewer-container"> | |
<div class="pdfjs-viewer-toolbar"> | |
<button @click="zoomOut">Zoom Out</button> | |
<button @click="zoomIn">Zoom In</button> | |
<button @click="changeScale('page-fit')">Page Fit</button> | |
<button @click="changeScale('page-width')">Page Width</button> | |
<button @click="changeScale('page-height')">Page Height</button> | |
<button @click="changeScale(1)">Actual</button> | |
<button :disabled="!firstPage" @click="changePage(firstPage)">First Page</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SampleModule from 'modules/some.module'; | |
angular.module('main-app', [SampleModule]) | |
.run(); |