Skip to content

Instantly share code, notes, and snippets.

@doncatnip
doncatnip / validation.js
Created September 20, 2019 12:56
A json schema validation wrapper for vue composition API
import _ from 'lodash'
import {reactive, ref} from '@vue/composition-api'
import Ajv from 'ajv'
const ajv = new Ajv({allErrors:true})
/***
* TODO: proper documentation including nested properties and arrays
*