首页 > 代码库 > Vue 入门

Vue 入门

<!DOCTYPE html>

<html lang="en">

<head>

  <meta charest="Utf-8">  

  <meta name="viewport" content="width=device-width,initial-seale=1">

  <title>helloworld</title>

  <script type="text/javascript" src="http://www.mamicode.com/assets/js/vue.js"></script>

</head>

<body>

   <h1>hello world </h1>

   <hr>

   <div id="app">

    {{message}}

   </div>

  <script type="text/javascript">

    var app = new Vue({

      el:‘app‘,

      data:{

        message:‘hello world‘

      }

    })

  </script>

</body>

</html>

Vue 入门