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

JS对象迭代v-for

时间:2019-06-20 11:04:48      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:htm   bsp   nbsp   unp   content   sheet   lan   迭代   initial   

<!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">
    <h1>JS对象迭代</h1>
    <div v-for="(value, key) in mygame">
        {{ key }} : {{ value }}
    </div>
</div>
<script>
    var myApp = new Vue({
        el: #myApp, 
        data: {
            mygame: {
                title: "乌贼娘2代",
                price: 350,
                pubdate: "2017年夏季",
                category: "射击",
                agerange: "全年龄",
            },
        },
    });
</script>
</body>

</html>

 

JS对象迭代v-for

标签:htm   bsp   nbsp   unp   content   sheet   lan   迭代   initial   

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

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