Vue通过计算属性进行赋值。
<div id="app"> {{method1}} </div> <script> var vue=new Vue({ el:"#app", data:{ a:'1', b:'2', c:'3' }, computed:{ method1:function () { return this.a + this.b + this.c } } }) </script>
以上就是具体的实现代码,计算属性要在computed里面声明方法,方法就相当于一个json数据,方法名相当与键,执行逻辑的结果相当于值。通过插值{{方法名}}可以得到方法的执行结果。