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