mirror of
https://github.com/element-plus/element-plus.git
synced 2025-08-14 18:11:48 +08:00
15 lines
215 B
Vue
15 lines
215 B
Vue
<template>
|
|
<el-input
|
|
v-model="input"
|
|
style="width: 240px"
|
|
placeholder="Please input"
|
|
clearable
|
|
/>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const input = ref('')
|
|
</script>
|