美文网首页
【基础】Vue安装

【基础】Vue安装

作者: JerichoPH | 来源:发表于2017-10-12 21:50 被阅读29次

Vue安装

Vue官网:http://unpkg.com/vue

  • 引入vue
<script:src="http://unpkg.com/vue"></script>
  • Vue数据渲染

    • html
    <div id="example">
        <h1>{{message}}</h1>
    </div>
    
    • js
    <script>
    // 初始化数据
    window.onload = function () {
        var vue = new Vue({
            el: '#app',
            data: {
                message: 'Hello vue!'
            }
        });
    };
    </script>
    

相关文章

网友评论

      本文标题:【基础】Vue安装

      本文链接:https://www.haomeiwen.com/subject/fixayxtx.html