vue.js
view 视图层 model 模型层 viewmodel Vue层 这是mvvm模型

<html>
<head>
</head>
<body>
<div id="myview">
{{username}}
</div>
</body>
<script src="${pageContext.request.contextPath}/js/vue.js"></script>
<script>
var mymodel = {
username:"zss",
age:18
}
var myviewmodel = new Vue({
el:"#myview",
data:mymodel
});
</script>
</html>

浙公网安备 33010602011771号