11 2020 档案
摘要:参考链接: https://vuejsexamples.com/best-and-complete-pagination-plugin-for-vue-2/ https://github.com/sant123/vuejs-uib-pagination 1,安装vuejs-uib-paginatio
阅读全文
摘要:运行过程中,有个节点部分服务出现故障,像将其下线修复, 使用nginx -t; nginx -s reload 重新加载配置 得到错误"nginx: [error] OpenEvent("Global\ngx_reload_1868") failed (5: Access is denied)" 原
阅读全文
摘要:1.1, 配置动态路由 const routes = [ { path: '/detail/:id', name: 'MovieDetailForm', component: MovieDetailForm } ] 1.2, 在跳转路径设置参数,不用传参数名 <router-link tag="li
阅读全文
摘要:把favicon.ico放到 index.html的同一目录在index.html 中引入图标 <link rel="icon" href="favicon.ico" type="image/x-icon"/>
阅读全文
摘要:在main.js入口文件引入 import { AjaxPlugin } from 'vux' Vue.use(AjaxPlugin) 组件中直接使用如下,会报错跨域的问题: this.$http.get('https://xxx.cn/ruoyi/wx/sys/loadNavBar?state=1
阅读全文
摘要:全局方式 需求:改变search组件的背景颜色,自定义颜色 创建文件路径如下: src/assets/less/theme.less ; 在build/webpack.base.conf.js下添加 { name: 'less-theme', path: 'src/assets/less/theme
阅读全文