LEARNING BY VUEING

Props 2
16 / 42

To pass down anything except for strings we again make use of v-bind: (or just a colon) to let Vue evaluate the expression.

This way we can pass down JSON, numbers, booleans, reactive properties, or the result of an expression.

Try changing the value of :initialCount to 1 + 1.


Note: VCounter.vue can not mutate props. For this, there are events which we will cover shortly...