vue+vuelidate实现的登录表单输入验证效果代码

代码语言:html

所属分类:验证

代码描述:vue+vuelidate实现的登录表单输入验证效果代码

代码标签: vue vuelidate 验证 表单 登录

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>

<html lang="en">

<head>

   
<meta charset="UTF-8">

   
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700" rel="stylesheet">




   
<style>
        body {
          background-color: #dcdcf0;
        }
       
        #app {
          width: 800px;
          height: 550px;
          background-color: white;
          margin: 80px auto;
          display: flex;
          font-family: "Montserrat";
          box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2), 0px 16px 32px rgba(0, 0, 0, 0.1);
        }
        #app .right {
          background-color: #005DFF;
          width: 35%;
          color: white;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          padding: 40px;
        }
        #app .right .quotes__title {
          font-weight: bold;
          font-size: 24px;
          margin-bottom: 16px;
        }
        #app .right .quotes__desc {
          font-size: 14px;
    .........完整代码请登录后点击上方下载按钮下载查看

网友评论0