new Vue({
el: '#app',
data() {
return {
info: null
};
},
mounted() {
axios
.get('http://likser.ru/tickets.json')
.then(response => (this.info = response));
}
});
<html>
<head>
<link rel="stylesheet" href="index.css">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div id="app">
{{info}}
</div>
<script src="index.pack.js"></script>
</body>
</html>