黄朝忆的个人博客
登录|注册

2. 第一个程序:hello world

创建 2022-10-29 01:0536652 浏览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 条)

编辑器加载中...