1 Star 1 Fork 0

sundaysmile / Vue.js

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
el与data.html 825 Bytes
一键复制 编辑 原始数据 按行查看 历史
sundaysmile 提交于 2020-06-15 22:30 . Vue.js代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>el与data</title>
</head>
<body>
<div id="app">
{{ message }}
<h2>{{ school.name}} {{ school.mobile }}</h2>
<ul>
<li>{{ campus[0] }}</li>
<li>{{ campus[1] }}</li>
</ul>
</div>
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<script>
var app= new Vue({
el:'#app',
data:{
message:" hello vue.js!",
school:{
name:"hello vue.js!",
mobile:"123456789",
},
campus:["北京","上海",]
}
})
</script>
</body>
</html>
JavaScript
1
https://gitee.com/lzp507/Vue.js.git
git@gitee.com:lzp507/Vue.js.git
lzp507
Vue.js
Vue.js
master

搜索帮助