Start your All-Access Pass to unlock this challenge
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?
Skip challenges and go to theNext Chapter