This commit is contained in:
mertsincan 2024-02-11 23:48:42 +00:00
parent 23a21c2407
commit bcb1b6eb8d
7 changed files with 14 additions and 8 deletions

View file

@ -1,5 +1,5 @@
<template>
<textarea :class="cx('root')" :value="modelValue" @input="onInput" v-bind="ptm('root', ptmParams)"></textarea>
<textarea :class="cx('root')" :value="modelValue" @input="onInput" v-bind="ptmi('root', ptmParams)"></textarea>
</template>
<script>
@ -8,6 +8,7 @@ import BaseTextarea from './BaseTextarea.vue';
export default {
name: 'Textarea',
extends: BaseTextarea,
inheritAttrs: false,
emits: ['update:modelValue'],
mounted() {
if (this.$el.offsetParent && this.autoResize) {