mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
17 lines
313 B
JavaScript
17 lines
313 B
JavaScript
/**
|
|
* Use scopedSlots in Vue 2.6+
|
|
* downgrade to slots in lower version
|
|
*/
|
|
|
|
export default {
|
|
methods: {
|
|
slots(name = 'default', props) {
|
|
const { $slots, $scopedSlots } = this;
|
|
if ($scopedSlots[name]) {
|
|
return $scopedSlots[name](props);
|
|
}
|
|
return $slots[name];
|
|
}
|
|
}
|
|
};
|