Let's keep it simple. Vue

data(){
    return {
        obj:{
            name:""
        }
    }
},
computed:{
    // obj.name
}
Aug.11,2021

computed to write pure functions without side effects, your requirements can not achieve
(of course, forced writing is OK, but this writing is problematic)

Menu