码迷,mamicode.com
首页 > Web开发 > 详细

vuejs7-v-for指令2

时间:2017-02-07 17:10:58      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:vuejs7   -v-for   指令2   

<!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>


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1895501

vuejs7-v-for指令2

标签:vuejs7   -v-for   指令2   

原文地址:http://suyanzhu.blog.51cto.com/8050189/1895501

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!