index.html

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link  type="text/css" rel="stylesheet" href="./main.css">
    <script src="https://unpkg.com/vue"></script>

    <title>Document</title>
</head>
<body>
<!--vue app是根容器-->
<div id="vue-app">
    <h1>{{name}}</h1>
    数据:{{name}}
    方法:{{greet("afternoon")}}
    <a v-bind:href="url">website</a>
    <input type="text" v-bind:value="name">
    <p v-html="websiteTag"></p>
</div>
<script src="./app.js"></script>
</body>
</html>

app.js

new Vue({
    el:"#vue-app",
    data:{
        /*存储数据*/
        name:"我是歌谣",
        job:"web开发",
        url:"www.baidu.com",
        websiteTag:"<p>我是歌谣</p>"
    },
    methods:{
            greet:function (time){
                return 'Good'+time
        }
    }
})