美文网首页
2018-09-11

2018-09-11

作者: 轩呓 | 来源:发表于2018-09-11 20:04 被阅读0次

    第一节
    <script src="vue.j/vue.js">

    </script>
    <body>
        <div id='add'>
            {{meg}}
            {{num}}
            {{org}}
        </div>
        <script>
            new Vue({// vue实列
                el:'#add',  //选择器
                data:{//对象
                    meg:'hello vue',
                    num:6,
                    org:[1,2,3]
                }
            })
            
        </script>
    </body>
    

    <li v-for=(val,inp ) in arr//导入的值>{{val}}---{{inp}}</li>
    第二节 vue-for循环
    <script type="text/javascript" src="vue.j/vue.js">

    </script>
    <body>
        <div id="emty">
            <ul>
                <li v-for="(value,inp) in arr">{{inp}}---{{value}}</li>
            </ul>
            
        </div>
        <script type="text/javascript">
            new Vue({
                el:'#emty',
                data:{
                    arr:[1,2,3],
                    
                }
            })
        </script>
    </body>
    

    第三节
    <script type="text/javascript" src="vue.j/vue.js">

    </script>
    
    <body>
        <div id="app">
            <table border="1"  cellspacing="0"  text-align="center">
                <thead>
                    <tr>
                        <th>编号</th>
                        <th>名称</th>
                        <th>价格</th>
                    </tr>
                </thead>
                <tbody>
                    <tr v-for="(value//输出内容,index//下标) in furit">
                        <td>{{index+1}}</td>下标为0  从1开始
                        <td>{{value.name}}</td>
                        <td>{{value.parect}}</td>
                    </tr>
                </tbody>
                
            </table>
        </div>
        <script type="text/javascript">
            new Vue({
                el:'#app',
            data:{
                furit:[
                {
                    name:'orange',
                    parect:3
                },
                {
                    name:'apple',
                    parect:2
                }
                ]
            }
            })
        </script>
    </body>

    相关文章

      网友评论

          本文标题:2018-09-11

          本文链接:https://www.haomeiwen.com/subject/wsfpgftx.html