mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
15 lines
248 B
Vue
15 lines
248 B
Vue
|
<template>
|
||
|
<el-input v-model="input" placeholder="Please input" />
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent, ref } from 'vue'
|
||
|
export default defineComponent({
|
||
|
setup() {
|
||
|
return {
|
||
|
input: ref(''),
|
||
|
}
|
||
|
},
|
||
|
})
|
||
|
</script>
|