Lines Matching refs:prop
5 * Get a prop's type.
15 * Get default prop value.
17 * @param {PropInterface} prop - Default prop.
18 * @return {PropVauleInterfance | undefined} Default prop value or Null.
20 function getDefaultPropValue(vm, prop) {
21 if (!prop) {
24 if (!hasOwn(prop, 'default')) {
28 const def = prop.default;
30 typeof def === 'function' && getPropType(prop.type) !== 'Function'