温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

vuejs7-v-for指令2

发布时间:2020-07-24 09:08:29 来源:网络 阅读:314 作者:素颜猪 栏目:开发技术

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<style>

* {

margin: 0;

padding: 0;

box-sizing: border-box

}


html {

font-size: 12px;

font-family: Ubuntu, simHei, sans-serif;

font-weight: 400

}


body {

font-size: 1rem

}


table,

td,

th {

border-collapse: collapse;

border-spacing: 0

}


table {

width: 100%

}


td,

th {

border: 1px solid #bcbcbc;

padding: 5px 10px

}


th {

background: #42b983;

font-size: 1.2rem;

font-weight: 400;

color: #fff;

cursor: pointer

}


tr:nth-of-type(odd) {

background: #fff

}


tr:nth-of-type(even) {

background: #eee

}


fieldset {

border: 1px solid #BCBCBC;

padding: 15px;

}


#app {

margin: 0 auto;

max-width: 640px

}

</style>

</head>

<body>

<div id="app">

        <table>

            <thead>

                <tr>

                    <th>Name</th>

                    <th>Age</th>

                    <th>Sex</th>

                </tr>

            </thead>

            <tbody>

                <tr v-for="person in people">

                    <td>{{ person.name  }}</td>

                    <td>{{ person.age  }}</td>

                    <td>{{ person.sex  }}</td>

                </tr>

            </tbody>

        </table>

    </div>

<script src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script>

<script>

var vm = new Vue({

el:"#app",

data:{

people: [{

                    name: 'Jack',

                    age: 30,

                    sex: 'Male'

                }, {

                    name: 'Bill',

                    age: 26,

                    sex: 'Male'

                }, {

                    name: 'Tracy',

                    age: 22,

                    sex: 'Female'

                }, {

                    name: 'Chris',

                    age: 36,

                    sex: 'Male'

                }]

}

});

</script>

</body>

</html>

vuejs7-v-for指令2

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI