需要的引入的 SDN 资源 <script src="https://cdn.jsdelivr.net/npm/xlsx-style@0.8.13/dist/jszip.js"></script><script src="https://cdn.jsdelivr.net/npm/xlsx-style@0.8.13/di…
在 main.js 中配置 // 自动构建开发及生产环境API路径 if(process.env.NODE_ENV === "development"){ //开发环境 Vue.prototype.$xxx = '/xxx'; Vue.prototype.$xxx2= '/xxx2'; }else{ //生产环境 Vue.prototype.$xx…
方式一 let tempPage = window.open("", '_blank');tempPage.location = "跳转的路径" 方式二 Vue单独打开页面,显示独立路由 let routeUrl = this.$router.resolve({ name:'路由的名字', quer…
这篇文章没有摘要
文件 build / utils.js 中添加
前端优化思路在海量数据中渲染中,前端在初始化拿到数据的后,只对少量数据进行渲染.监听滚动轴的位置,使其到达一定高度后,再渲染后面的部分数据 <template> <div> <ul> <li v-for="(item,index) in data">{{data}}</li> </u…
基于 vue-cli 2.0 module.exports = { dev:{ assetsSubDirectory: 'static', assetsPublicPath: '/', proxyTable:{ '/scoket': { target: 'xxx', changeOrigin: true, secure: false, pathRe…
// 传参 this.$router.push({ name:"ExamChange", params:{ routeParams: xxx } }) // 接收参数 this.$route.params.routeParams vue获取url参数 this.$route.query."url后缀的参数名"
/**解决浏览器拦截窗口,先打开空白窗口在乡该窗口的location中赋值*/ let tempPage = window.open("","_blank"); let routerUrl = this.$router.resolve({ name:"路由的name", query:{"查询参数"} }) tempPage.location = r…
this.$forceUpdate()