Vue-01

作者: 三岁就很酷耶 | 来源:发表于2018-09-10 20:15 被阅读0次

    ###    创建vue,先导入vue.js

        新建vue格式

    ```

                new Vue({

                        el:'.itany',

                                data:{

                                        msg:'hello vue'

                                }

                })

    ```

        v-for格式

                new Vue({

                        el:".rng",

                                data:{

                                        arr:[1,2,3,4,5],

                                        obj:{

                                                name:"Jack",age:"18"

                                }

                        }

                    })

        v-model格式

                    new Vue({

                           el:".Faker",

                                    data:{

                                            msg:""

                                    }

                    })

        v-on格式

                var vm=new Vue({

                        el:'#itany',

                                data:{

                                        msg:'hello vue'

                                },

                                methods:{

                                        alt:function(){

                                                alert(vm.msg)

                                                alert(this.msg)

                                        }   

                                }

                })

    相关文章

      网友评论

          本文标题:Vue-01

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