### 创建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)
}
}
})