devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
50 lines (48 loc) • 1.46 kB
JavaScript
/*!
* devextreme-vue
* Version: 25.2.3
* Build date: Fri Dec 12 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-vue
*/
import { defineComponent } from "vue";
import { prepareComponentConfig } from "./core/index";
import ValidationGroup from "devextreme/ui/validation_group";
const componentConfig = {
props: {
elementAttr: Object,
height: [Number, String],
onDisposing: Function,
onInitialized: Function,
onOptionChanged: Function,
width: [Number, String]
},
emits: {
"update:isActive": null,
"update:hoveredElement": null,
"update:elementAttr": null,
"update:height": null,
"update:onDisposing": null,
"update:onInitialized": null,
"update:onOptionChanged": null,
"update:width": null,
},
computed: {
instance() {
return this.$_instance;
}
},
beforeCreate() {
this.$_WidgetClass = ValidationGroup;
this.$_hasAsyncTemplate = true;
}
};
prepareComponentConfig(componentConfig);
const DxValidationGroup = defineComponent(componentConfig);
export default DxValidationGroup;
export { DxValidationGroup };