摘要: vue.config.js中引入 const CopyWebpackPlugin = require('copy-webpack-plugin') const path = require('path'); module.exports = { publicPath: './', assetsDir 阅读全文
posted @ 2021-04-27 16:12 收藏小能手 阅读(492) 评论(0) 推荐(0) 编辑
摘要: 1. 路由跳转的时候权限控制 不同菜单栏下共用同一个页面: 同一个页面多个路由,路由名称不同,但是 component值是一样的 2.菜单栏权限控制 3.按钮权限控制 阅读全文
posted @ 2021-04-27 16:08 收藏小能手 阅读(116) 评论(0) 推荐(0) 编辑
摘要: export const unique1 = (arr) => { var hash = []; for (var i = 0; i < arr.length; i++) { if (hash.indexOf(arr[i]) == -1) { hash.push(arr[i]); } } retur 阅读全文
posted @ 2021-04-27 15:54 收藏小能手 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 可以在点击路由跳转的时候 query 方式绑定一个时间戳: handleSelect(key, keyPath) { let destination = "/" + key; this.$router.push({ path: destination, query: { //绑定随机数以跳转相同路由 阅读全文
posted @ 2021-04-27 15:52 收藏小能手 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 下载OSS npm install ali-oss或者<script src="http://gosspublic.alicdn.com/aliyun-oss-sdk-x.x.x.min.js"></script> 引入(本人npm方式) import OSS from 'ali-oss' 实例化 阅读全文
posted @ 2021-04-27 15:49 收藏小能手 阅读(1518) 评论(0) 推荐(0) 编辑
摘要: provide、inject app.vue中: <template> <div id="app"> <router-view v-if="isRouterAlive"></router-view> </div> </template> data(){ return{ isRouterAlive:t 阅读全文
posted @ 2021-04-27 15:35 收藏小能手 阅读(789) 评论(0) 推荐(0) 编辑
摘要: 1.https://tinypng.com/ 常用压缩方式2.http://www.bejson.com/ui/compress_img/ 可以自定义压缩比例 阅读全文
posted @ 2021-04-27 15:24 收藏小能手 阅读(120) 评论(0) 推荐(0) 编辑
摘要: <div class="imgs" :class="getSex(item.sex)" > </div> computed:{ getSex(){ return function (sex){ return sex?'类名':'类名' } }, } 阅读全文
posted @ 2021-04-27 15:20 收藏小能手 阅读(591) 评论(0) 推荐(0) 编辑
摘要: content: ''; border-right: 9px solid #eaedf1; border-top: 9px solid transparent; border-left: 9px solid transparent; border-bottom:9px solid transpare 阅读全文
posted @ 2021-04-27 15:17 收藏小能手 阅读(95) 评论(0) 推荐(0) 编辑
摘要: content: ''; display: inline-block; width: 120px; height: 25px; position: absolute; left: 0; top: 110px; margin-left: 10px; z-index: 990; background:  阅读全文
posted @ 2021-04-27 15:16 收藏小能手 阅读(626) 评论(0) 推荐(0) 编辑