difference between using this.$emit and this.$root.$emit

is there a difference between using $emit directly and $root.$emit ?
=> this.$emit(‘default-choice’, this.choice); & this.$root.$emit(‘default-choice’, this.choice);

`this.$emit('default-choice', this.choice);`

`this.$root.$emit('default-choice', this.choice);