码迷,mamicode.com
首页 > 其他好文 > 详细

用nuxt asyncData

时间:2019-07-15 14:44:58      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:--   eth   code   for   let   console   api   mount   new   

        async asyncData () {
            const asyncData1 = {};
            let rows = await this.getsyn();
            asyncData1.myitems = rows
            asyncData1.haha = ‘haha1‘
            asyncData1.project = ‘haha2‘
            console.log(rows)
            return asyncData1;
        },
    
        mounted(){
            console.log(‘row --------‘)
            //console.log(this.row)
            
            //this.getItems();
        },
        methods:{
            async getsyn(){
                let rows = await api.get(‘/api/list.json?page=1&time=‘+new Date().getTime() ,{});
                return rows;
            }, }
<div v-for="item in myitems">

用nuxt asyncData

标签:--   eth   code   for   let   console   api   mount   new   

原文地址:https://www.cnblogs.com/cnchengv/p/11188755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!