mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-12 10:45:10 +08:00
16 lines
233 B
Vue
16 lines
233 B
Vue
|
<template>
|
||
|
<div style="margin: 20px;">
|
||
|
<el-input v-model="input" placeholder="请输入内容" />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
input: 'Hello Element UI!',
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
</script>
|