HelloWorld
代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title>Vue-helloworld</title>
</head>
<body>
<div id="demo">
<h1>Hello,{{name}},{{address}}</h1>
</div>
<script>
Vue.config.productionTip = false;
new Vue({
el: "#demo",
data: {
name: "xmg",
address: "hangzhou"
}
})
</script>
</body>
</html>