mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 12:07:54 +08:00
1.6 KiB
1.6 KiB
Usage
This component provides a configuration to all Vue components underneath itself via the provide / inject, In the render tree all components will have access to the provided config.
<template>
<a-config-provider :getPopupContainer="getPopupContainer">
<app />
</a-config-provider>
</template>
<script>
export default {
methods: {
getPopupContainer(el, dialogContext) {
if (dialogContext) {
return dialogContext.getDialogWrap();
} else {
return document.body;
}
},
},
};
</script>
Content Security Policy
Some component use dynamic style to support wave effect. You can config csp
prop if Content Security Policy (CSP) is enabled:
<a-config-provider :csp="{ nonce: 'YourNonceCode' }">
<a-button>My Button</a-button>
</a-config-provider>
API
Property | Description | Type | Default |
---|---|---|---|
autoInsertSpaceInButton | Set false to remove space between 2 chinese characters on Button |
boolean | true |
csp | Set Content Security Policy config | { nonce: string } | - |
renderEmpty | set empty content of components. Ref Empty | slot-scope | Function(componentName: string): ReactNode | - |
getPopupContainer | to set the container of the popup element. The default is to create a div element in body . |
Function(triggerNode, dialogContext) | () => document.body |
prefixCls | set prefix class | string | ant |