1 Star 0 Fork 8

hhzz9hhzz9/learn-vue

forked from 高鹏/learn-vue 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
demo_027.html 1.58 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.bootcss.com/vue/2.6.11/vue.min.js"></script>
</head>
<body>
<div id="app">
<div v-for="item in userList">
<user-component :id="item.id" :name="item.name" :photo="item.photo"></user-component>
</div>
</div>
<template id="userDiv">
<div style="float: left; margin: 5px; width: 200px; border:#abcdef solid 1px">
<table width="100%">
<tr>
<td>id</td>
<td>{{id}}</td>
</tr>
<tr>
<td>name</td>
<td>{{name}}</td>
</tr>
<tr>
<td>photo</td>
<td>
<img :src="'img/'+ photo" width="100" height="75" />
</td>
</tr>
</table>
</div>
</template>
<script>
var app = new Vue({
el: "#app",
data: {
userList: [
{id:1, name:"张三",photo:"1.jpg"},
{id:2, name:"李四",photo:"2.jpg"},
{id:3, name:"王五",photo:"3.jpg"},
]
},
components: {
"userComponent": {
template: "#userDiv",
props:['id', 'name', 'photo']
}
}
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/llf119/learn-vue.git
git@gitee.com:llf119/learn-vue.git
llf119
learn-vue
learn-vue
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385