vue+element
雪月弦歌
这个作者很懒,什么都没留下…
展开
-
Vue项目打包部署Tomcat中刷新404的问题
使用的是vue ui进行本地run和build的工作,使用的mode是history模式.本地刷新不会出现404的情况,但是打包build部署到tomcat后,刷新页面会出现404的情况.按照网上搜出来的解决方案,在根目录手工添加"WEB-INF"文件夹,并新增"web,xml"文件,如下:<?xml version="1.0" encoding="UTF-8"?><we...原创 2019-12-15 22:11:05 · 1855 阅读 · 0 评论 -
vue管理页面主页
先上效果图全屏显示的问题,在index.html,App.vue,以及主页的Home.vue 中添加style,代码如下 <style type="text/css"> html, body, #app, .el-container { padding: 0px; margin: 0px; height...原创 2019-11-28 16:02:58 · 1232 阅读 · 0 评论 -
设置vue背景色
在vue文件中添加下面两个方法即可beforeRouteEnter(to, from, next) { // 添加背景色 document.querySelector('body').setAttribute('style', 'background-color:#303030') next() },beforeRouteLeave(...原创 2019-11-27 22:18:41 · 2475 阅读 · 0 评论 -
springmvc 跨域设置
我的springMVC版本为5.0.5<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.0.5.RELEASE</version> &...原创 2019-11-27 16:08:59 · 231 阅读 · 0 评论 -
使用vue创建的登录页面
<template><div id="box"> <el-form id="from"> <el-form-item label="手机号码" prop="userphone"> <el-input type="username" v-model="userphone" placehold...原创 2019-11-27 17:47:54 · 2751 阅读 · 1 评论