Vue入门-idea版
程序员文章站
2024-03-20 17:36:04
...
直接看代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue实验</title>
</head>
<script src="js/vue.js"></script>
<body>
<div id="app">
{{message}}
</div>
</body>
<script>
//创建Vue对象 view model
new Vue({
el: "#app",//由vue接管id为app的区域
data: {
message:"Hello Vue!!! This Is Test"//注意此处不要加分号
}
});
</script>
</html>
运行结果:
上一篇: 顺序查找、折半查找和索引查找