el
第一种写法:对象式
el
第二种写法:原型对象的挂载方法
以$开头的变量为面向程序员的变量和方法
实例原型对象上方法和属性,Prototype为原型对象
model_Vue.$mount("#prj")
$mount 为挂载方法,把容器和 Vue
实例连接起来
data
第一种写法 对象式
data
第二种写法 函数式
把data写成函数,必须返回对象,对象数据为所需要的
const model_Vue = new Vue({
el: '#model',
data:function(){
return {
modelChoiceTitleContent: "作品展示"
}
}
})
Vue
调用该函数,调用 console.log(this)
发现 this
是 Vue
实例对象
注意: 要求是普通函数,不能是匿名函数,匿名(箭头)函数 this
为 window
,Vue
所管理的函数要求都写为普通函数
data:function(){...}
简写 data(){...}