Watch监听、Computed计算属性

一、Watch监听


深度监听,页面一启动就监听:

watch: {
    total: {
        handler(){},
        immediate: true
    }
}

二、Computed计算属性


你可能感兴趣的:(Watch监听、Computed计算属性)