[JS][Vue]学习记录之数据和方法

Demo地址
上篇文章学会了如何创建vue对象,这篇文章介绍下vue的数据和方法

1.获取到html中的DOM元素.

(1)创建一个


(2)在新建的vue对象中,指定el属性


2.在html中使用这些数据.

hello {{name}},I'm {{age}}.

浏览器就会显示hello allen, I'm 27.
3.通过methods给vue对象添加方法.

var app = new Vue({
    el:"#app",
    data:{
        name : "allen",
        age : 123
    },
    methods:{
        study:function (className) {
            return className;
        }
      }
    }
);

调用方式:

hello {{name}},I'm {{age}}. {{study('math')}}

显示结果:


完整代码:




    
    Vue Begin
    


hello {{name}},I'm {{age}}. {{study('math')}}

你可能感兴趣的:([JS][Vue]学习记录之数据和方法)