The Delightful World of Vue Part 2
Add To Cart
Start your All-Access Pass to unlock this challenge
Buy Access Login

Challenge 1 / 1

Imagine we have a component whose sole purpose is to render an input element:

<template>
    <input type="text" v-model="myValue" />
</template>

<script>
export default {
    name: 'InputComponent',
    data() {
        return {
            myValue: '',
        };
    },
};
</script>

Which of the following :disabled attributes would result in an input element being disabled?

Select your answer
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.