摘要:
append-to-body: Dialog 自身是否插入至 body 元素上。嵌套的 Dialog 必须指定该属性并赋值为 true设置属性 :append-to-body='true’即可让对话框在最上层,灰布在它的下面 1 <!--新增分类弹出框--> 2 <el-dialog v-model 阅读全文
摘要:
1 <dependency> 2 <groupId>com.github.pagehelper</groupId> 3 <artifactId>pagehelper-spring-boot-starter</artifactId> 4 <version>1.4.1</version> 5 </dep 阅读全文
摘要:
在App.vue的style样式中添加下面css代码 1 <style> 2 ::-webkit-scrollbar { 3 width: 0 !important; 4 } 5 ::-webkit-scrollbar { 6 width: 0 !important;height: 0; 7 } 8 阅读全文
摘要:
<el-button type="primary" style="position: fixed;top: 300px;right: 30px">固定位置</el-button> 阅读全文
摘要:
package com.example.demo.itkb.user.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config. 阅读全文
摘要:
前端: import axios from 'axios'axios.defaults.withCredentials = true // 添加代码:允许跨域携带cookie,解决前后端分离项目,Session失效问题 后端 response.setHeader("Access-Control-Al 阅读全文
摘要:
1、在vue.config.js中配置如下 1 const {defineConfig} = require('@vue/cli-service') 2 module.exports = defineConfig({ 3 transpileDependencies: true, 4 lintOnSa 阅读全文
摘要:
部署到Nginx后,配置在vue中的针对某些请求(比如后端请求)的代理会失效(表现为这部分请求会404错误,但是项目css等静态资源都能正常访问),这时需要对Nginx配置相应的请求代理。 比如我们Vue项目的vue.config.js配置如下(不需要修改):期望能将/api/为前缀的请求全都代理到 阅读全文
摘要:
1、解压 1 tar -zxvf nginx-1.13.7.tar.gz 解压nginx安装包 2、cd nginx-1.13.7,然后执行下面命令 ./configure 用来检测安装平台的目标特征make 用来编译( 从Makefile中读取指令,然后编译)make install 用来安装( 阅读全文
摘要:
1 <div class="title" :title="article.title">{{article.title}}</div> 阅读全文