<!DOCTYPE html>
<html>
  <head>
  <meta charset="UTF-8">
  <title></title>
  <script src="js/vue.min.js"></script>
  </head>
  <body>
    <div >
      new Vue({
        el: '#app',
        data: {
          todos: [
            { text:'Vue教程' },
            { text:'MVVM框架' },
            { text:'数据驱动和组件化' }
          ]
        }
      })
    </script>
  </body>
</html>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-15
  • 2021-05-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-22
  • 2022-12-23
相关资源
相似解决方案