An open API service indexing awesome lists of open source software.

https://github.com/iml885203/vue1-vee-validate

vee-validate for Vue.js 1.x
https://github.com/iml885203/vue1-vee-validate

validate validation vee-validate vue vue1 vuejs

Last synced: about 1 month ago
JSON representation

vee-validate for Vue.js 1.x

Awesome Lists containing this project

README

          

# vue1-vee-validate
> [vee-validate](https://github.com/logaretm/vee-validate/tree/v2) v2 for Vue.js 1.x

### Demo

[Demo page](https://iml885203.github.io/vue1-vee-validate)

### Installation

#### npm
```
npm i vue1-vee-validate --save
```
#### yarn
```
yarn add vue1-vee-validate
```

### Getting Started
```javascript
import Vue from 'vue';
import VeeValidate from 'vee-validate';
import Vue1VeeValidate from 'vue1-vee-validate';

Vue.use(VeeValidate);
```

or include the script directly

```html

Vue.use(VeeValidate); // good to go.

```

### Basic Example
```html

{{ errors.first('email') }}
```

### Documentation
Read VeeValidate v2 [documentation](https://vee-validate.logaretm.com/v2/).