mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 09:50:58 +08:00
f12000f9c2
* feat: add website * chore: fix
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>
|