Vue extend 学习

    <div id="box">
        <aa></aaa>
    </div>

    <script>
        var Aaa = Vue.extend({
            data () {
                return {
                    msg: '我是数据信息'
                };
            },
            template: '<h1>{{msg}}</h1>'

        });

        Vue.component("aa", Aaa);

        var vm = new Vue({
            el: "#box"
        });
        </script>
https://github.com/eteplus/vue-sui-demo
原文地址:https://www.cnblogs.com/zsongs/p/6387098.html