mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
14 lines
215 B
Vue
14 lines
215 B
Vue
<template>
|
|
<el-input
|
|
v-model="textarea"
|
|
:rows="2"
|
|
type="textarea"
|
|
placeholder="Please input"
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
const textarea = ref('')
|
|
</script>
|