Vue.js 循環語句


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>list</title>

</head>
<body>
<ul id="list">
    <li v-for="item in items">
        {{ item.message }}
    </li>
    <br>

    <li v-for="(item,index) in items">
        {{index}}:{{ item.message }}
    </li>
    <br>

    <template v-for="item in items">
        <li>{{ item.message }}</li>
        <li>--------------</li>
    </template>
    <br>

    <li v-for="value in object">
        {{ value }}
    </li>
    <br>

    <li v-for="(value,key) in object">
        {{key}}:{{ value }}
    </li>
    <br>

    <li v-for="n in 10">{{ n }}</li>
    <br>

    <li v-for="n in numbers">{{ n }}</li>
</ul>
<!--of 替代 in-->
<script src="js/vue.js"></script>
<script>
    var vm = new Vue({
        el:"#list",
        data: {
            items: [
                {message: 'Foo' },
                {message: 'Bar' }
            ],
            object: {
                FirstName: 'John',
                LastName: 'Doe',
                Age: 30
            },
            numbers: [ 1, 2, 3, 4, 5 ]
        },
        computed:{
            list:function(){
                this.items.push({ message: 'Baz' })
            },
            evenNumbers: function () {
                return this.numbers.filter(function (number) {
                    return number % 2 === 0
                })
            }
        }
    })

</script>
</body>
</html>

還有組建的循環語句暫時未懂,后補。。。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM