Vue computed v.s. methods

computed 會 cached methods 不會 computed 回傳一個值,methods 不一定 https://cn.vuejs.org/v2/guide/computed.html

Wayne