UNPKG

vue-material

Version:
16 lines (12 loc) 317 B
import Vue from 'vue' export default (name, options) => { return { validator: value => { if (options.includes(value)) { return true } Vue.util.warn(`The ${name} prop is invalid. Given value: ${value}. Available options: ${options.join(', ')}.`, this) return false } } }