Vue
※前提条件:本文基于 Vue 2.0 创作
methods:{ } 里是写各种不同的方法函数,这些方法可以理解为是一个属性,因为调用这个方法的时候,最终返回的是一个值
methods: { greet(time) { return `Good ${time}`; } }
コメント: