2. 第一个程序:hello world

创建时间:2022-10-29 01:05
长度:366
浏览:0
评论:0

安装Vue

安装 -> 官网指导 -> 点击


第一个程序 - hello world

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>Document</title>
 <script src="../js/vue.js"></script>
</head>
<body>
 <!-- vue容器(Vue模板) -->
 <div id="root">
   <p>{{test}}</p>
 </div>
 
 <script>
    const vm = new Vue({
      el: '#root',
      data: {
       test: 'hello world',
      }
    })
 </script>
</body>
</html>


评论(共0条)