<project-comp></project-comp>在頁面加載好時不顯示,但是我已經在created鉤子里面賦值給app.projects了。請問怎樣讓它在頁面加載好時就顯示呢?Vue.component('project-comp',{ template: ` <div class='box'> <div v-for='one in this.$parent.projects'> <h2> @{{one.place}}</h2> <h2> @{{one.time}}</h2> </div> </div> `,});var app = new Vue({ el: '#root', props:['projects'], created: function () { $.post( 'url', {'city':'beijing'}, function(data){ this.projects = data; }, 'json' ); },});
vue component 在頁面加載好時不顯示。如何讓它顯示?
慕虎7371278
2018-10-16 10:15:18