美文网首页
vue第一课,创建实例

vue第一课,创建实例

作者: 流年_时光 | 来源:发表于2019-06-19 17:27 被阅读0次

    代码:

    <!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8"> <title>Vue入门</title> <!-- 写在head里,可防止页面抖屏 --> <script src="./vue.js"></script> </head> <body> <div id="root">{{msg}}</div> <script> // el作用:与div通过id绑定 new Vue({ el:"#root", data:{ msg: "hello world" } }); </script> </body> </html>

    效果:

    相关文章

      网友评论

          本文标题:vue第一课,创建实例

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