New to Kendo UI for Vue? Start a free 30-day trial
TextArea
Represents the Kendo UI for Vue Native TextArea component.
Accepts properties of type TextAreaProps.
jsx
<template>
<k-form
@submit="handleSubmit">
<formcontent />
</k-form>
</template>
<script>
import { Form } from "@progress/kendo-vue-form";
import FormContent from './FormContent.vue';
export default {
components: {
'k-form': Form,
'formcontent': FormContent
},
methods: {
handleSubmit (dataItem) {
alert(JSON.stringify(dataItem, null, 2));
}
}
};
</script>