<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

 

相关文章:

  • 2021-12-10
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-17
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-19
  • 2021-07-13
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-08
  • 2022-12-23
相关资源
相似解决方案