分类:设置
2020
10-30
一、新建用户:1、执行sql语句新建(推荐):INSERTINTO`mysql`.`user`(`Host`,`User`,`Password`,`ssl_cipher`,`x509_issuer`,`x509_subject`,`authentication_string`)VALUES('%',--允许远程访问'zhangsan',--用户名'*6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9',--明文密码:123456'','','','');select*fromuserwhere`user`='zhangsan';2、使用工具新建:二、设置权限1、配置...
继续阅读 >
2020
10-10
2020
10-10
2020
10-10
2020
10-09
在router.js设置如下:index就是默认页面constroutes=[//公司项目{path:'/',redirect:'/index'},{path:'/index',component:index},{path:'/example',component:example,redirect:'/edetail',children:[{path:'/edetail',component:edetail}]},{path:'/login',component:login}]不使用在根目录设置router的方法,跳转页面带不同的头部信息时容易出现问题补充知识:vue-router默认的首页渲染设置当一个vue项目的页面打开,...
继续阅读 >
2020
10-09
2020
10-09