Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 28, 2018 17:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/9f73223bbe6b1e538a72792caf53ab6f to your computer and use it in GitHub Desktop.
Save uno-de-piera/9f73223bbe6b1e538a72792caf53ab6f to your computer and use it in GitHub Desktop.
<script>
export default {
props: {
title: {
type: String,
required: true,
validator: title => {
if( title.length > 30 ) {
console.warn('No puedes crear un título tan largo para un Widget!!!');
return false;
}
return true;
}
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment