<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta name="format-detection" content="telephone=no,email=no,date=no,address=no"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>vue</title>
</head>
<body>
<div id="app"></div>
<script src="js/vue.js"></script>
<script>
// new Vue({
// el:"#app"
// })
new Vue().$mount("#app")
</script>
</body>
</html>