<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 测试实例 - 菜鸟教程(runoob.com)</title>
<script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
</head>
<body>
<div >
  <p>{{ message }}</p>
</div>

<script>
//实例化一个Vue实例 new Vue({
//挂载点 el:
'#app',
//数据 data: { message:
'Hello Vue.js!' } }) </script> </body> </html>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-11-01
  • 2021-12-23
  • 2021-09-06
  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
猜你喜欢
  • 2021-08-20
  • 2021-08-04
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2021-05-21
  • 2021-10-19
相关资源
相似解决方案