The Delightful World of Vue Part 2
v-bind Many Props
  Start your All-Access Pass to unlock this challenge
Buy Access Login

Challenge 1 / 1

v-bind is an amazing shortcut that lets us assign multiple, or even dynamic props to a component using one single attribute. Given this piece of code, what are the actual props that the child component will receive?

<template>
    <child-component
        text="Some text prop here"
        v-bind="{
            isValid: true,
            showText: true,
        }"
    />
</template>
Skip challenges and go to theNext Chapter

Turn Challenges Off?

All further challenges will be skipped automatically.
You can re-enable challenges at any time on this page or from your account page.