Computed 和 Methods 的区别


  • 缓存
    • computed: 会缓存计算结果, 依赖变化才会重新求值
    • methods: 不会缓存计算结果, 每次调用都会重新求值