Answer the question
In order to leave comments, you need to log in
Is it necessary to register tag attributes as properties on a vue.js component?
Good morning! I wondered whether it is necessary to write all the attributes of the tag into the properties of the component?
For example: I made a component with an input field:
<template>
<input
class="field"
:type="type"
:name="name"
:value="value"
:disabled="disabled"
:required="required"
:placeholder="placeholder"
:maxlength="maxlength"
:readonly="readonly"
>
</template>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question