Compare commits

..

No commits in common. "master" and "347c5f91dc8eb9f33914edf7637d1625cd3dbe2d" have entirely different histories.

View File

@ -108,16 +108,12 @@
const app = new Vue({ const app = new Vue({
el: '#app', el: '#app',
mounted() { async mounted() {
this.loadProjectList(); let data = await this.requestData('./project/');
console.log(data);
this.projects = data
}, },
methods: { methods: {
async loadProjectList(){
let data = await this.requestData('./project/');
console.log(data);
this.projects = data
setTimeout(()=>this.loadProjectList(),10000)
},
/** /**
* *
* @param {ProjectInfo} data * @param {ProjectInfo} data