mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
30 lines
610 B
TypeScript
30 lines
610 B
TypeScript
import { defineComponent } from 'vue';
|
|
import { truthProp, createNamespace } from '../utils';
|
|
import { useChildren } from '@vant/use';
|
|
|
|
const [name, bem] = createNamespace('action-bar');
|
|
|
|
export const ACTION_BAR_KEY = Symbol(name);
|
|
|
|
export default defineComponent({
|
|
name,
|
|
|
|
props: {
|
|
safeAreaInsetBottom: truthProp,
|
|
},
|
|
|
|
setup(props, { slots }) {
|
|
const { linkChildren } = useChildren(ACTION_BAR_KEY);
|
|
|
|
linkChildren();
|
|
|
|
return () => (
|
|
<div
|
|
class={[bem(), { 'van-safe-area-bottom': props.safeAreaInsetBottom }]}
|
|
>
|
|
{slots.default?.()}
|
|
</div>
|
|
);
|
|
},
|
|
});
|