<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Hello Vue!</title>
</head>
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<body>



<div id="app">
 <h1>我的第一个  {{ message }}</h1>
</div>

    
     </body>
     
     <script >
     
     var app = new Vue({
  el: '#app',
  data: {
    message: 'Hello Vue!'
  }
})
     </script>
     
     
</html>

 

相关文章:

  • 2022-03-11
  • 2021-07-19
  • 2021-06-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
  • 2021-07-05
  • 2021-08-31
猜你喜欢
  • 2022-01-23
  • 2022-01-11
  • 2021-12-01
  • 2022-03-10
  • 2021-07-02
  • 2021-10-09
相关资源
相似解决方案