【项目】Vue3+TS CMS 登录模块搭建

以下是一个简化的Vue 3和TypeScript项目中登录模块的代码示例。假设已经有一个基本的Vue 3项目设置,并且已经安装了Element Plus UI库。




<template>
  <el-form :model="loginForm" :rules="rules" ref="loginFormRef" @submit.prevent="submitForm">
    <el-form-item prop="username">
      <el-input v-model="loginForm.username" placeholder="Username"></el-input>
    </el-form-item>
    <el-form-item prop="password">
      <el-input type="password" v-model="loginForm.password" placeholder="Password"></el-input>
    </el-form-item>
    <el-form-item>
      <el-button type="primary" native-type="submit">Login</el-button>
    </el-form-item>
  </el-form>
</template>
 
<script lang="ts">
import { defineComponent, reactive, ref } from 'vue';
import type { FormInstance } from 'element-plus';
 
interface LoginForm {
  username: string;
  password: string;
}
 
export default defineComponent({
  setup() {
    const loginFormRef = ref<FormInstance>();
    const loginForm = reactive<LoginForm>({
      username: '',
      password: ''
    });
 
    const rules = {
      username: [
        { required: true, message: 'Please input username', trigger: 'blur' }
      ],
      password: [
        { required: true, message: 'Please input password', trigger: 'blur' },
        { min: 6, max: 12, message: 'Password length should be 6 to 12 characters', trigger: 'blur' }
      ]
    };
 
    const submitForm = () => {
      loginFormRef.value?.validate((valid: boolean) => {
        if (valid) {
          // 登录逻辑
          console.log('Login form is valid. Submitting...');
        } else {
          console.log('Login form is invalid. Please correct the errors.');
          return false;
        }
      });
    };
 
    return {
      loginFormRef,
      loginForm,
      rules,
      submitForm
    };
  }
});
</script>

这段代码展示了如何使用Vue 3和TypeScript创建一个简单的登录表单。它使用了Element Plus的<el-form>组件来处理表单的状态和验证,以及<el-input><el-button>组件来渲染输入框和按钮。代码中的loginFormRef是一个响应式引用,指向登录表单的实例,用于在JavaScript代码中访问表单的方法和属性。loginForm是一个响应式对象,包含登录所需的用户名和密码数据。rules对象定义了表单验证规则,确保用户输入的数据是有效的。submitForm方法在表单被提交时触发,它使用loginFormRef来执行验证,并处理登录逻辑(在这个例子中,只是打印信息)。

VUE
最后修改于:2024年08月27日 18:23

评论已关闭

推荐阅读

DDPG 模型解析,附Pytorch完整代码
2024年11月24日
DQN 模型解析,附Pytorch完整代码
2024年11月24日
AIGC实战——Transformer模型
2024年12月01日
Socket TCP 和 UDP 编程基础(Python)
2024年11月30日
python , tcp , udp
如何使用 ChatGPT 进行学术润色?你需要这些指令
2024年12月01日
AI
最新 Python 调用 OpenAi 详细教程实现问答、图像合成、图像理解、语音合成、语音识别(详细教程)
2024年11月24日
ChatGPT 和 DALL·E 2 配合生成故事绘本
2024年12月01日
omegaconf,一个超强的 Python 库!
2024年11月24日
【视觉AIGC识别】误差特征、人脸伪造检测、其他类型假图检测
2024年12月01日
[超级详细]如何在深度学习训练模型过程中使用 GPU 加速
2024年11月29日
Python 物理引擎pymunk最完整教程
2024年11月27日
MediaPipe 人体姿态与手指关键点检测教程
2024年11月27日
深入了解 Taipy:Python 打造 Web 应用的全面教程
2024年11月26日
基于Transformer的时间序列预测模型
2024年11月25日
Python在金融大数据分析中的AI应用(股价分析、量化交易)实战
2024年11月25日
AIGC Gradio系列学习教程之Components
2024年12月01日
Python3 `asyncio` — 异步 I/O,事件循环和并发工具
2024年11月30日
llama-factory SFT系列教程:大模型在自定义数据集 LoRA 训练与部署
2024年12月01日
Python 多线程和多进程用法
2024年11月24日
Python socket详解,全网最全教程
2024年11月27日