a(href="#" class="_available-a" @mouseover="changeIcon")
img(src="~/assets/img/chrome_icon-color.svg",
alt="chrome icon"
ref='icon'
width='25')
changeIcon(){
this.$refs.icon.src = "~/assets/img/chrome_icon-white.svg";
}
changeIcon(){
this.$refs.icon.src = require("~/assets/img/chrome_icon-white.svg");
}