Vue Common - Object Structures - positionConfig - my
Specifies the overlay element's side or corner to align with a target element.
To set this property, use an object with the x and y fields. These fields specify the overlay element's horizontal and vertical sides, respectively. Alternatively, you can use a string shortcut from the accepted values list.
App.vue
- <template>
- <DxPopup ... >
- <DxPosition
- my="left top">
- <!-- or -->
- <DxMy x="left" y="top" />
- </DxPosition>
- </DxPopup>
- </template>
- <script>
- import 'devextreme/dist/css/dx.light.css';
- import DxPopup, {
- DxPosition,
- DxMy
- } from 'devextreme-vue/popup';
- export default {
- components: {
- DxPopup,
- DxPosition,
- DxMy
- }
- }
- </script>
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.