Skip to content

Instantly share code, notes, and snippets.

View NikitaKA's full-sized avatar

Nikita Korobochkin NikitaKA

View GitHub Profile
@NikitaKA
NikitaKA / vuelidate-email.vue
Last active September 20, 2020 14:48
Vuelidate email
<template>
<input ref="refEmailInput" type="email" v-model="$v.email.$model" />
</template>
<script>
import { ref } from '@vue/composition-api';
import useVuelidate from '@vuelidate/core';
export default {
setup() {