zoukankan      html  css  js  c++  java
  • 组件里v-for示例

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

    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <script src="../js/vue.js"></script>
    </head>

    <body>
        <div id="app">
            <!-- 组件里的v-for 必须要有key值的绑定 -->
            <boke v-for="(item,index) in items" :key="index" :item="item" :index="index"></boke>
        </div>
        <script>
            Vue.component('boke', {
                props: ['item','index'],
                data: () => {
                    return {
                        message: 'hello world'
                    }
                },
                template: "<p>{{message}}--{{item}}===={{index}}</p>",
            });
            var vm = new Vue({
                el: "#app",
                data: {
                    items: {
                        name: 'zhangsan',
                        age: 20,
                    }
                }
            });
        </script>
    </body>

    </html>
  • 相关阅读:
    阅读笔记《梦断代码》其一
    第一次冲刺(第九天)
    第一次冲刺(第八天)
    第一冲刺阶段(第七天)
    第一冲刺阶段(第六天)
    第一冲刺阶段(第五天)
    MySQL数据库半同步复制
    MySQL事物
    MySQL字符编码
    MySQL用户授权
  • 原文地址:https://www.cnblogs.com/kukai/p/12411035.html
Copyright © 2011-2022 走看看