<div v-for="inform in info">
<a v-bind:href="inform[1]">{{inform[0]}}</a>
</div>
axios
.get('test.php')
.then(response => (this.info = (Object.prototype.toString.call(response.data) === '[object String]') ? JSON.parse(response.data) : response.data));