<template>
<button class="svg-button" :onclick="this.onclick">
<img :src="this.svg" :width="this.width" :height="this.height"/> </button> </template> <style>
.svg-button{
background: transparent; border: none; margin: 50px; } </style> <script> export default { props: { svg: { type: String, default: ''}, width: { type: [Number, String], default: 80 }, height: {type: [Number, String], default: 80 }, onclick: {type: String, default: ''} } } </script>