vue222/01-Vue基础案例练习/Tables.html

44 lines
1.0 KiB
HTML
Raw Normal View History

2022-10-15 10:05:34 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>表格</title>
<style>
*{
padding: 0;
margin: 0;
}
table{
font-size: 20px;
margin: 25% auto;
width: 400px;
height: 100px;
text-align: center;
border:none ;
}
</style>
</head>
<body>
<table cellspacing="5" cellpadding="10" border="1px solid #f00" id="tables">
<tr>
<td v-for="name in names" >{{name}}</td>
</tr>
<tr>
<td v-for="items in item">{{items}}</td>
</tr>
</table>
</body>
2022-11-19 11:19:25 +08:00
<script src="../00-tools/JavaScript/vue.js"></script>
2022-10-15 10:05:34 +08:00
<script>
let table=new Vue({
el:"#tables",
data:{
names:["数慧","艺术","品味"],
item:["价值","人生","思想"],
}
})
</script>
</html>