Base of a Vue App JSFiddle

by RomainMazB

HTML

<html>
  <body>
    <div id="app">
    <img :src="img_src"><br>
    <button @click="rotate">Rotate</button>
    <button @click="resize">Resize</button>
    </div>
  </body>
</html>

JavaScript

var vm = new Vue({
  el: '#app',
  data: {
  	img_src:...