vue在created异步请求数据,通过v-for渲染;在mounted中获取不到数据和Dom的解决方案
问题://template//JSasynccreated(){this.tabs=awaitthis.fetchSolutionTypes();console.log(JSON.stringify(this.tabs));//有数据},mounted(){console.log(JSON.stringify(this.tabs));//没有数据console.log(document.getEl