摘要:
Hr继承UserDetails public class Hr implements UserDetails { private Integer id; private String name; private String phone; private String telephone; priv 阅读全文
摘要:
创建springboot工程 Spring Web Spring Security MySQL Driver MyBatis Framework 利用逆向工程生成代码并在pom中进行以下配置 <resources> <resource> <directory>src/main/resources</ 阅读全文
摘要:
在登录按钮加上点击事件 <el-button type="primary" style="width:100%" @click="submitLogin">登录</el-button> 添加method methods:{ submitLogin(){ this.$refs.loginForm.va 阅读全文
摘要:
配置启动 安装Element npm i element-ui -S i表示 install S表示生产环境 引入 Element 在 main.js 中写入以下内容: import Vue from 'vue'; import ElementUI from 'element-ui'; import 阅读全文
摘要:
创建项目 vue create vhr 运行 cd vhr npm run serve 阅读全文
摘要:
git reset --hard HEAD : 将stage area中未提交的file回滚到之前的commit状态 git clean -d -f 删除未跟踪的目录和文件 阅读全文
摘要:
安装设置 查看用户名和邮箱地址 git config user.name git config user.email 修改全局用户名和邮箱地址 git config --global user.name "your Name" git config --global user.email "emai 阅读全文
摘要:
创建项目 在码云中创建仓库,使用git clone https://gitee.com/xintl/Travel.git 克隆到本地 进入文件夹使用vue init webpack Travel初始化项目 cd Travel npm run dev 在浏览器中输入http://localhost:8 阅读全文