mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-06 05:09:00 +08:00
25 lines
433 B
Vue
25 lines
433 B
Vue
<template>
|
|
<el-input
|
|
v-model="text"
|
|
maxlength="10"
|
|
placeholder="Please input"
|
|
show-word-limit
|
|
type="text"
|
|
>
|
|
</el-input>
|
|
<div style="margin: 20px 0"></div>
|
|
<el-input
|
|
v-model="textarea"
|
|
maxlength="30"
|
|
placeholder="Please input"
|
|
show-word-limit
|
|
type="textarea"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
const text = ref('')
|
|
const textarea = ref('')
|
|
</script>
|