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