vue获取当前路由
vue 获取当前路由console.log(this.$route.path) 友情提示: $router用来操作对象,比如路由跳转的时候使用,即this.$router.push('xxxx') $route用来获取信息。比如获取当前路由this.$route...
spring 重点--spring-security实现的token授权
在我的用户密码授权文章里介绍了spring-security的工作过程,不了解的同学,可以先看看用户密码授权这篇文章,在用户密码授权模式里,主要是通过一个登陆页进行授权,然后把授权对象写到ses...
spring SpringSecurity oauth2.0 token自动续期
SpringSecurity oauth2.0 token自动续期 一、token 续期 spring security oauth2.0 默认 token 生成机制是没有为token 失效自动续期的。  ...
spring 重点---spring security oauth2 自定义client客户端,实现跳过clientId认证
@Configuration @EnableAuthorizationServer public class AuthorizationServerConfig extends AuthorizationServerConfigurerAdapter { @Autowired &...
el-select实现change事件
官网提供了el-select的change事件,但是并没有提供使用示例,但是最近在vue项目中却要使用到。 直接上代码,HTML部分 <el-select @change="selectChanged" v-model="devType" size=small&...
scss安装与使用教程
scss npm install node-sass --save-dev //安装node-sass npm install sass-loader --save-dev //安装sass-loader npm install style-loader --save-dev //安装styl...
scss的基本用法
本文记录scss的基本用法 引入外部文件 @import "xxxxxxx" 1.scss定义变量 $ $fontSize: 100px; .content { font-size: $fontSize } 2.scss中继承 语法: @extend ...
踩坑记26 vue3 props 默认值 | el-form 禁用 个别元素例外
2021.9.18 坑79(props、默认值、vue3):组件传props,设置默认值。 props: { isDisabled: { type: Boolean, default:false, }, },坑80(el-f...
table中是否显示、显示状态变更
1.按钮是否显示 <el-table-column label="Operation" width="90" align="center" fixed="right"> <template slot-scope="scope"> <el-button type="text" size="s...
element-ui中el-table组件的行号
场景:列表的第一列为序号,为保护数据信息,防止恶意爬虫,不能把后端给的id直接显示想到这里;解决:通过动态绑定属性 row-class-name 。templete: <el-table :data="tableData3" heigh...