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