Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 17, 2020 05:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/33fca51d281d153429ac1d7aa660b749 to your computer and use it in GitHub Desktop.
Save parzibyte/33fca51d281d153429ac1d7aa660b749 to your computer and use it in GitHub Desktop.
<validation-provider
name="Cantidad"
:rules="{required: true, max_value: empleado.totalAhorrado - empleado.totalRetirado}"
v-slot="{ errors, classes }">
<input class="input" :class="classes" ref="inputEnfocar" v-model.number="monto"
placeholder="Cantidad que se retira"
:disabled="cargando"
type="number">
<ErroresValidacion :errores="errors"/>
</validation-provider>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment