# 创建实例
const app = new Vue({
el: "#app",
data: {
name: 'xinggang',
tellist: []
},
created() {
fetch("https://app.lttc.cn/api/xxb/gettellist")
.then(res => res.json())
.then(data => {
console.log(data.Result)
this.tellist = data.Result
})
}
})
← Vue 安装 axios 网络请求 →