UNPKG

vuepress-plugin-medium-zoom

Version:

VuePress plugin for medium-zoom

16 lines 486 B
import { VuepressMediumZoom } from './VuepressMediumZoom'; import '../styles/index.styl'; export default { watch: { '$page.path'() { if (typeof this.$vuepress.mediumZoom === 'undefined') return; this.$vuepress.mediumZoom.updateDelay(); }, }, mounted() { this.$vuepress.mediumZoom = new VuepressMediumZoom(); this.$vuepress.mediumZoom.updateDelay(); }, }; //# sourceMappingURL=clientRootMixin.js.map