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

异步组件

时间:2017-10-27 20:42:05      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:function   template   reject   分割   example   ...   webp   回调函数   回调   

<body>
    <div id="app">
        <async-example></async-example>
    </div>
    <script>
        //异步组件
        Vue.component(‘async-example‘,function(resolve,reject){
            setTimeout(function(){
                //将组件定义传入resolve回调函数
                resolve({
                    template:‘<div>I am async</div>‘
                })
            },1000)
        })
        new Vue({
            el:"#app"
        })
        //webpack代码分割暂时省略还不会
        //...
        //
    </script>
</body>

 

异步组件

标签:function   template   reject   分割   example   ...   webp   回调函数   回调   

原文地址:http://www.cnblogs.com/ItIsInteresting/p/7744955.html

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