合集-Vue大杂烩
【报错解决】【Vue】与后端交互时,http与https跨域问题
摘要:Vue前端,Java后端,网站开启了强制https
上传项目后发生了以下报错:xhr.js:220 Mixed Content: The page at 'https://xxx' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://xxx'. This request has been blocked; the content must be served over HTTPS.
【UI框架】ANtDesignVue中的Content超过一页显示问题
摘要:假设content部分是绿色 当内容超出一页之后,滑下去,后面的都没有底色。 如果footer有内容,content的内容甚至会和footer内容重叠在一起,同时,footer的内容随着下滑,位置就不是处于页面最下方了。 要解决这个问题,就给content这部分添加样式 overflow-y: au
【Vue】前端直接显示MySQL Datatime时间,显示为英文如何处理
摘要:问题如图 想让时间显示为自己想要的格式,可以自己编写一个函数 const formatDate= (timestamp)=> { const date = new Date(timestamp); const year = date.getFullYear(); const month = Stri
2024年1月Java项目开发指南10:vite+Vue3项目创建
摘要:新建项目 安装router npm install vue-router 在src下新建目录router,在目录下新建index.js 在index.js里面配置路由 import { createRouter, createWebHistory } from 'vue-router'; // 定义
2024年1月Java项目开发指南15:vue3+AntDesignVue 设计页面
摘要:考虑到有的同学对vue3不熟悉,因此,我把ControlView.vue这个页面清空,我们从0开始写。 <template style="width: 100%"> </template> <script setup> </script> <style scoped> </style> 搭建页面的基
【Vue】Vue3滑动拼图验证 vue3-slide-verify
摘要:安装 npm i vue3-slide-verify --save 引入 import SlideVerify from 'vue3-slide-verify'; import "vue3-slide-verify/dist/style.css"; 使用 <slide-verify @success