慕圣4311876
2019-07-05 16:38
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Vue练习</title>
<script src="js/vue.js" ></script>
</head>
<body>
<div id="root">{{msg}}</div>
<script>
new Vue({
el:"#root",
data: {
msg:"hello world"
}
})
</script>
</body>
</html>
截图如上
vue2.5入门
146742 学习 · 657 问题
相似问题