Can VUE child components assign values to the data in the parent components directly by passing values to the parent components?

subcomponent
this.$emit ("tofalse",false)
how to directly assign status to false in the parent component

  data () {
    return {
        status:""
    }
  },
Can

be assigned without function?
@ tofalse= "status=false" not allowed

Mar.03,2021

try within the parent component:

@tofalse="status => this.status = status"

feels similar to this ide/components.html-sharpsync-%E4%BF%AE%E9%A5%B0%E7%AC%A6" rel=" nofollow noreferrer "> .sync syntax candy, which can be assigned directly
< comp: foo=" bar "@ update:foo=" val = > bar = val "> < / comp > , which is simpler.


you can call the method of the parent component in the child component, can't you modify the value of the parent component in the method of the parent component?

this.$parent.status = false; / / not recommended

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37e4a-2c0db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37e4a-2c0db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?