码迷,mamicode.com
首页 > 其他好文 > 详细

列表渲染v-for

时间:2019-06-20 10:51:25      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:href   class   lin   type   src   game   ice   code   tps   

<!DOCTYPE html>
<html lang="zh">

<head>
    <title></title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <script src="https://unpkg.com/vue/dist/vue.js"></script>
    <link href="../css/style.css" rel="stylesheet"> </head>

<body>
<div id="myApp">
    <ul>
        <li v-for="(game, index) in games">({{index+1}}) {{game.title}} / 售价:{{game.price}}元</li>
    </ul>
</div>
<script>
    var myApp = new Vue({
        el: #myApp, 
        data: {
            games: [
                {title:"勇者斗恶龙",price:500},
                {title:"库跑卡丁车",price:400},
                {title:"马里奥世界",price:550},
            ]
        },
    });
</script>
</body>

</html>

 

列表渲染v-for

标签:href   class   lin   type   src   game   ice   code   tps   

原文地址:https://www.cnblogs.com/Jeely/p/11057288.html

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