摘要: 查看防火墙的状况 service iptables status 防火墙编辑 vi /etc/sysconfig/iptables # Firewall configuration written by system-config-firewall # Manual customization of 阅读全文
posted @ 2021-08-18 11:53 蓝灵幽 阅读(48) 评论(0) 推荐(0)
摘要: 这个错误是因为访问了不在路由内的路由 No match found for location with path 解决方案:在路由配置最末尾添加所有匹配不到的路由都跳转到404页面 { path: '/404', name: '404', component: () => import(/* web 阅读全文
posted @ 2021-08-17 18:10 蓝灵幽 阅读(1490) 评论(0) 推荐(0)
摘要: 父组件调用 sub-menu 子组件 1. 引入子组件模板 import SingleFileRecursiveSubMenu from "@/components/menus/SingleFileRecursiveSubMenu"; 2. 注册子组件 'sub-menu': SingleFileR 阅读全文
posted @ 2021-08-17 15:44 蓝灵幽 阅读(1560) 评论(0) 推荐(0)
摘要: 更改profile文件 vi /etc/profile 在文件末尾添加以下两行代码 export LC_ALL="zh_CN.UTF-8" export LANG="zh_CN.UTF-8" 也可以修改 /etc/sysconfig/i18n文件 LANG="zh_CN.UTF-8" 或 LANG= 阅读全文
posted @ 2021-08-16 13:27 蓝灵幽 阅读(207) 评论(0) 推荐(0)
摘要: 一、vue router path 与 name 区别 路径与别名的关系 <router-link to="/system">系统页面</router-link> <router-link :to="{name: 'system', query: {id: 1}}">系统页面</router-lin 阅读全文
posted @ 2021-08-12 10:42 蓝灵幽 阅读(118) 评论(0) 推荐(0)
摘要: # install dependenciesnpm install # serve with hot reload at localhost:8080npm run dev # build for production with minificationnpm run build # build f 阅读全文
posted @ 2021-08-11 10:28 蓝灵幽 阅读(57) 评论(0) 推荐(0)
摘要: <script th:inline = "javascript" type = "text/javascript"> <script type="module"> 阅读全文
posted @ 2021-08-10 14:14 蓝灵幽 阅读(425) 评论(0) 推荐(0)
摘要: <title>[[${msg}]]</title> [[${map.name}]] //[[]]写法会html转义 [(${map.name})] //[()]写法不会html转义 转义:menuItems: '[{&quot;fjd&quot;:&quot;N01&quot;,&quot;cddm 阅读全文
posted @ 2021-08-10 11:36 蓝灵幽 阅读(247) 评论(0) 推荐(0)
摘要: 一、常用标签 th:block 不显示 th:include 替换内容到引入的文件 二、关联css与js href 和 src : 用于直接预览页面(在不启动服务器的情况下) th:href 和 th:src 启动服务器时使用 <link rel="stylesheet" href="../stat 阅读全文
posted @ 2021-08-05 13:02 蓝灵幽 阅读(132) 评论(0) 推荐(0)
摘要: 一、 二、 也可以写成 c3p0.maxPoolSize, 在第三步将prefix改成对应的即可 三、 阅读全文
posted @ 2021-08-03 18:00 蓝灵幽 阅读(577) 评论(0) 推荐(0)