vue的template
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="../vue.js"></script>
</head>
<body>
<div id="app">
{{message}}
</div>
<script>
const app=new Vue({
el : '#app',
data:{
mess:'hello'
}
})
</script>
</body>
</html>

浙公网安备 33010602011771号