美文网首页
vue零基础开发001——hello world

vue零基础开发001——hello world

作者: 文朝明 | 来源:发表于2019-11-13 10:42 被阅读0次
    <!DOCTYPE html>
    
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title>hello world</title>
        <script src="./vue.js"></script>
    
    </head>
    <body>
    <div id="app">{{content}}</div>
    <script>
        var app=new Vue({
            el:'#app',
            data:{
                content:'hello world'
            }
        })
    </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:vue零基础开发001——hello world

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