# Instance Methods
# $watch
Arguments:
{string | Function} source
{Function | Object} callback
{Object} [options]
{boolean} deep
{boolean} immediate
Returns:
{Function} unwatch
Usage:
Watch an expression or a computed function on the Vue instance for changes. The callback gets called with the new value and the old value. The expression only accepts dot-delimited paths. For more complex expressions, use a function instead.
Example:
const app = Vue.createApp({ data() { return { a: 1, b: 2 } }, created() { // keypath this.$watch('a', (newVal, oldVal) => { // do something }) // function this.$watch( // every time the expression `this.a + this.b` yields a different result, // the handler will be called. It's as if we were watching a computed // property without defining the computed property itself () => this.a + this.b, (newVal, oldVal) => { // do something } ) } })
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25When watched value is an Object or Array, any changes to its properties or elements won't trigger the watcher because they reference the same Object/Array:
const app = Vue.createApp({ data() { return { article: { text: 'Vue is awesome!' }, comments: ['Indeed!', 'I agree'] } }, created() { this.$watch('article', () => { console.log('Article changed!') }) this.$watch('comments', () => { console.log('Comments changed!') }) }, methods: { // These methods won't trigger a watcher because we changed only a property of Object/Array, // not the Object/Array itself changeArticleText() { this.article.text = 'Vue 3 is awesome' }, addComment() { this.comments.push('New comment') }, // These methods will trigger a watcher because we replaced Object/Array completely changeWholeArticle() { this.article = { text: 'Vue 3 is awesome' } }, clearComments() { this.comments = [] } } })
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37$watch
returns an unwatch function that stops firing the callback:const app = Vue.createApp({ data() { return { a: 1 } } }) const vm = app.mount('#app') const unwatch = vm.$watch('a', cb) // later, teardown the watcher unwatch()
1
2
3
4
5
6
7
8
9
10
11
12
13Option: deep
To also detect nested value changes inside Objects, you need to pass in
deep: true
in the options argument. Note that you don't need to do so to listen for Array mutations.vm.$watch('someObject', callback, { deep: true }) vm.someObject.nestedValue = 123 // callback is fired
1
2
3
4
5Option: immediate
Passing in
immediate: true
in the option will trigger the callback immediately with the current value of the expression:vm.$watch('a', callback, { immediate: true }) // `callback` is fired immediately with current value of `a`
1
2
3
4Note that with
immediate
option you won't be able to unwatch the given property on the first callback call.// This will cause an error const unwatch = vm.$watch( 'value', function() { doSomething() unwatch() }, { immediate: true } )
1
2
3
4
5
6
7
8
9If you still want to call an unwatch function inside the callback, you should check its availability first:
const unwatch = vm.$watch( 'value', function() { doSomething() if (unwatch) { unwatch() } }, { immediate: true } )
1
2
3
4
5
6
7
8
9
10See also: Watchers
# $emit
Arguments:
{string} eventName
[...args]
Trigger an event on the current instance. Any additional arguments will be passed into the listener's callback function.
Examples:
Using
$emit
with only an event name:<div id="emit-example-simple"> <welcome-button v-on:welcome="sayHi"></welcome-button> </div>
1
2
3const app = Vue.createApp({ methods: { sayHi() { console.log('Hi!') } } }) app.component('welcome-button', { template: ` <button v-on:click="$emit('welcome')"> Click me to be welcomed </button> ` }) app.mount('#emit-example-simple')
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17Using
$emit
with additional arguments:<div id="emit-example-argument"> <advice-component v-on:give-advice="showAdvice"></advice-component> </div>
1
2
3const app = Vue.createApp({ methods: { showAdvice(advice) { alert(advice) } } }) app.component('advice-component', { data() { return { adviceText: 'Some advice' } }, template: ` <div> <input type="text" v-model="adviceText"> <button v-on:click="$emit('give-advice', adviceText)"> Click me for sending advice </button> </div> ` })
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23See also:
# $forceUpdate
Usage:
Force the Vue instance to re-render. Note it does not affect all child components, only the instance itself and child components with inserted slot content.
# $nextTick
Arguments:
{Function} [callback]
Usage:
Defer the callback to be executed after the next DOM update cycle. Use it immediately after you've changed some data to wait for the DOM update. This is the same as the global
nextTick
, except that the callback'sthis
context is automatically bound to the instance calling this method.Example:
Vue.createApp({ // ... methods: { // ... example() { // modify data this.message = 'changed' // DOM is not updated yet this.$nextTick(function() { // DOM is now updated // `this` is bound to the current instance this.doSomethingElse() }) } } })
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16See also: nextTick