Skip to content
#

validate

Here are 336 public repositories matching this topic...

vee-validate
sebsobseb
sebsobseb commented Mar 4, 2020

Versions

  • vee-validate: 3.1.3
  • vue: 2.6.10
  • vue-jest: 3.0.5
  • @vue/test-utils: ^1.0.0-beta.31

Describe the bug
I have a BaseInput.vue component which has one default <slot></slot> wrapped in a <validation-provider>. When it has errors it will show the error message inside a <div class="error-message"></div>.
But, in my tests, when I pass a <input> to the default slo

ckarmy
ckarmy commented Jan 4, 2019

I download the ZIP and run npm install but then I run expo start and I get:

[11:17:11] Starting project at /Volumes/Sata/repositories/snowflake copy
[11:17:12] Expo DevTools is running at http://localhost:19002
[11:17:12] Error: Missing app.json. See https://docs.expo.io/
[11:17:12] No Expo configuration found. Are you sure this is a project directory

How I solve this?

Th

MR-Mostafa
MR-Mostafa commented Apr 4, 2020

Hi,
How can we use this package in the validate method of mongoosejs? (like validator.js or @hapi/joi)

const mongoose = require('mongoose');
const validator = require('validator');

const userSchema = new mongoose.Schema({
  name: {
    type: String,
    required: [true, 'A tour must have a name'],
     validate: [validator.isAlpha, 'name must only contain characters']
  },
  p

Improve this page

Add a description, image, and links to the validate topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the validate topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.