其他分享
首页 > 其他分享> > 页面中引入vue,插值语法

页面中引入vue,插值语法

作者:互联网

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=device-width, initial-scale=1.0">     <script type="text/javascript" src="../js/vue.js"></script>     <title>Document</title> </head> <body>     <div id="root">         <h1>我是{{name}},我今年18</h1>     </div> </body>
<script type="text/javascript">     new Vue({         el: '#root',         data:{             name: '张三'         }     }) </script>
</html>

标签:el,vue,name,插值,18,Vue,data,页面
来源: https://www.cnblogs.com/comeoncode/p/16221540.html