mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-11-30 10:18:02 +08:00
9 lines
175 B
Vue
9 lines
175 B
Vue
<template>
|
|
<el-input v-model="input" placeholder="Please input" clearable />
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
const input = ref('')
|
|
</script>
|