[Vuejs]-I have a bug in the library Html2Canvas โ€“ Vue

0๐Ÿ‘

โœ…

You have a template error that stops the Vue renderer </template>

<template>
  <div>
    <div ref="printMe">
      <h1>Print me!</h1>
    </div>
    <img :src="output">
  </div>
</template>

sandbox

Leave a comment