1. Install git yum install git 2. Install Vundle.vim 2.1 mkdir ~/.vim/bundle 2.2 git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vund ...
分类:
系统相关 时间:
2021-03-17 14:46:30
阅读次数:
0
1、安装 tnpm /npm install -save js-export-excel 2、页面引入 import ExportJsonExcel from 'js-export-excel'; 使用 handleExportExcel(){ let option = {}; //声明一个对象op ...
分类:
其他好文 时间:
2021-03-17 14:26:10
阅读次数:
0
在connection的生命里,会一直有一个user thread(以及user thread对应的THD)陪伴它。 Connection和Session概念 来自Stackoverflow的一个回答: A session is just a result of a successful conne ...
分类:
数据库 时间:
2021-03-17 14:12:26
阅读次数:
0
问题 如果你用过svn,一定知道svn export,可以用来从代码库中导出一份干净的代码(没有.svn等)。git是否有类似功能呢? git archieve 可以用于将库中代码打包。 1. 基本用法: git archive --format tar.gz --output "./output. ...
分类:
其他好文 时间:
2021-03-15 11:26:06
阅读次数:
0
前端更新迭代太快,特此记录学习中遇到的一些知识点 知识点也特别多,最近又在使用vue开发项目,在项目中成长,感觉代码是真的菜,后面需要重新优化 一 export const sum=12 import {sum} from xxx alert(sum) 二 const sum=12 export s ...
分类:
其他好文 时间:
2021-03-11 19:54:35
阅读次数:
0
1、创建指令文件bthPermission.js,编写自定义指令: import Vue from 'vue'; import api from "api"; /**权限指令**/ const has = Vue.directive('has', { bind: async function (el ...
分类:
其他好文 时间:
2021-03-10 13:37:17
阅读次数:
0
Description Link. 给定一棵 \(n\) 个点的树,设 \(E\) 为边集,\(V'_x,\ V'_y\) 分别为删去边 \((x,y)\) 后 点 \(x\) 所在的树的点集和点 \(y\) 所在的树的点集,求: \[ \sum_{(u,v)\in E}(\sum_{x\in V' ...
分类:
其他好文 时间:
2021-03-10 12:54:10
阅读次数:
0
Codeforces Global Round 13 D 大意 给定一幅无限节点的有向图,顶点u指向顶点u+v的充要条件是 \(u\&v=v\) 。 现在有q组询问,每次询问给出u,t,问:能否从u到t,回答 yes/no 思路 找规律... 以下皆为2进制 u+v 的位为1的个数小于等于 u 的位 ...
分类:
其他好文 时间:
2021-03-08 14:03:37
阅读次数:
0
export function getreportlook (parameter) { return request({ url: api.reportlook, method: 'get', params: parameter }) } // 朋友圈详情 export function getse ...
分类:
其他好文 时间:
2021-03-08 13:32:04
阅读次数:
0
Vue3 CompositionAPI 组合式API 子组件向父组件传递数据(通信) 传递给 setup 函数的第二个参数是 context。context 是一个普通的 JavaScript 对象,它暴露三个组件的 property:attrs,slots和emits,其中emit就是Vue2中的 ...