You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
573 B
23 lines
573 B
const hasProp = (instance, prop) => {
|
|
const $options = instance.$options || {}
|
|
const propsData = $options.propsData || {}
|
|
return prop in propsData
|
|
}
|
|
const filterProps = (props, propsData = {}) => {
|
|
const res = {}
|
|
Object.keys(props).forEach((k) => {
|
|
if (k in propsData || props[k] !== undefined) {
|
|
res[k] = props[k]
|
|
}
|
|
})
|
|
return res
|
|
}
|
|
|
|
const getOptionProps = (instance) => {
|
|
const { $options = {}, $props = {}} = instance
|
|
return filterProps($props, $options.propsData)
|
|
}
|
|
|
|
export { hasProp, filterProps, getOptionProps }
|
|
export default hasProp
|