<template> <div class="ebook"> <div class="read-wrapper"> <div id="read"></div> </div> </div></template><script>import Epub from 'epubjs'const DOWNLOAD_URL = '/static/2018_Book_AgileProcessesInSoftwareEngine.epub'global.ePub = Epubexport default { components: { }, methods: { // 电子书的解析和渲染 showEpub () { // 生成Book对象 this.book = new Epub(DOWNLOAD_URL) // 通过Book.renderTo生成Rendition对象 this.rendition = this.book.renderTo('read', { width: window.innerWidth, height: window.innerHeight, // 兼容iOS method: 'default' }) // 通过Rendtion.display渲染电子书 this.rendition.display() } }, mounted () { this.showEpub() }}</script><style lang='scss' scoped>@import 'assets/styles/global';</style>