1 通过以下代码体验Vue.js最核心的功能——数据的双向绑定
<!DOCTYPE html>双向绑定v-model练习
你好,{{name}}
varapp =newVue({ el:'#app', data: { name:''} })运行效果
2 使用v-bind绑定data中的属性
<!DOCTYPE html>属性绑定练习
姓名:{{name}}
{{website}}varapp =newVue({ el:'#app', data: { name:'尤雨溪', description:'Vue.js创立者', website:'Vue.js官网', url:'https://cn.vuejs.org/', avatar:'https://gss1.bdstatic.com/9vo3dSag_xI4khGkpoWK1HF6hhy/baike/w%3D268%3Bg%3D0/sign=c08a0c60a844ad342ebf8081e8996bc9/4afbfbedab64034f29596c8ba6c379310b551da2.jpg'} })语法糖:v-bind可以简写为:,如<img :src="avatar"/>
网友评论