vue-java-tutorials/vue2-tutorials/import-script/1-模板语法.html

33 lines
702 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2025-06-14 22:25:00 +08:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="js/vue@2.7.16.js"></script>
<title>模板语法</title>
2025-06-14 22:25:00 +08:00
</head>
2025-06-14 22:25:00 +08:00
<body>
<div id="app">
2025-06-14 22:25:00 +08:00
<h1>插值语法</h1>
<h3>你好:{{name}}</h3>
<br />
2025-06-14 22:25:00 +08:00
<h1>指令语法</h1>
<a :href="url" target="_blank">v2.cn.vuejs.org</a>
2025-06-14 22:25:00 +08:00
<!-- v-bind 可以省略 -->
<a v-bind:href="url" target="_blank">v2.cn.vuejs.org</a>
</div>
2025-06-14 22:25:00 +08:00
</body>
<script>
new Vue({
2025-06-14 22:25:00 +08:00
el: "#app",
data: {
name: "Bunny",
url: "https://v2.cn.vuejs.org/",
},
});
</script>
</html>