I need to change the content of element plus components.
I tried using <template>
and <slot>
, but without success.
<ElInput v-model="form.name" placeholder="Nome">
<template>
<input class="intro-x login__input form-control py-3 px-4 block"
type="text"
autocomplete="off"
tabindex="0"
placeholder="Nome"
>
</template>
</ElInput>