vue2.0 element-ui登录样式
时间: 2023-03-23 12:03:23 浏览: 266
vue2.0基于vue-cli+element-ui制作树形treeTable
Vue2.0和Element-UI是两个独立的框架,Vue是一种渐进式JavaScript框架,而Element-UI是基于Vue的组件库,提供了大量的UI组件,使得开发者可以快速搭建美观、易用的Web应用程序。
以下是使用Vue2.0和Element-UI进行登录的样式示例代码:
```html
<template>
<el-form ref="loginForm" :model="loginForm" :rules="rules" label-width="80px" class="login-form">
<el-form-item label="用户名" prop="username">
<el-input v-model="loginForm.username" autocomplete="off"></el-input>
</el-form-item>
<el-form-item label="密码" prop="password">
<el-input type="password" v-model="loginForm.password" autocomplete="off"></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary" @click="submitForm">登录</el-button>
</el-form-item>
</el-form>
</template>
<script>
export default {
data() {
return {
loginForm: {
username: '',
password: ''
},
rules: {
username: [
{ required: true, message: '请输入用户名', trigger: 'blur' }
],
password: [
{ required: true, message: '请输入密码', trigger: 'blur' }
]
}
};
},
methods: {
submitForm() {
this.$refs.loginForm.validate(valid => {
if (valid) {
// 执行登录逻辑
}
});
}
}
};
</script>
<style>
.login-form {
width: 400px;
margin: 50px auto;
}
</style>
```
在这个示例中,我们使用了Element-UI的el-form、el-form-item、el-input和el-button组件来构建登录表单。通过定义loginForm数据属性和rules校验规则,我们实现了简单的表单验证。当用户单击“登录”按钮时,我们通过validate方法对表单进行验证,如果验证成功,则可以执行实际的登录逻辑。在样式方面,我们使用了一个简单的CSS样式,将表单居中显示在页面上。
希望这个示例可以帮助你开始使用Vue2.0和Element-UI构建更丰富、更强大的Web应用程序。
阅读全文