devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
42 lines (40 loc) • 1.25 kB
JavaScript
/*!
* devextreme-vue
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 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
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
var VueType = require("vue");
var Vue = VueType.default || VueType;
var validation_group_1 = require("devextreme/ui/validation_group");
var component_1 = require("./core/component");
var DxValidationGroup = Vue.extend({
extends: component_1.DxComponent,
props: {
elementAttr: Object,
height: [Function, Number, String],
onDisposing: Function,
onInitialized: Function,
onOptionChanged: Function,
width: [Function, Number, String]
},
computed: {
instance: function () {
return this.$_instance;
}
},
beforeCreate: function () {
this.$_hasTranscludedContent = true;
this.$_WidgetClass = validation_group_1.default;
}
});
exports.DxValidationGroup = DxValidationGroup;
exports.default = DxValidationGroup;