Ai
1 Star 0 Fork 0

Arthas/Vue学习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2 vue列表.html 626 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nodine 提交于 2020-10-03 10:10 +08:00 . vue学习
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- 开发环境版本,包含了有帮助的命令行警告 -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<title></title>
</head>
<body>
<ul id="app">
<li v-for="item in book">{{item}}</li>
</ul>
<script type="text/javascript">
var app=new Vue({
el:"#app",
data:{
book:["从入门到精通","颈椎病康复指南","心脏病康复指南","活着"]
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/Artahs/vue-learning.git
git@gitee.com:Artahs/vue-learning.git
Artahs
vue-learning
Vue学习
master

搜索帮助