安装包: npm install node-sass --save-dev npm install sass-loader --save-dev (sass-loader依赖于node-sass) 在build文件夹下的webpack.base.conf.js的rules里面添加配置 { test: ...
分类:
其他好文 时间:
2020-05-15 15:55:23
阅读次数:
431
el-form-item 里面有多个select 或者input : <el-form-item label="选项一:" required> <div class="diasubject"> <el-form-item prop="stage.code" :rules="[{ required: ...
分类:
其他好文 时间:
2020-05-13 12:07:52
阅读次数:
288
Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following: The number of people in each ...
分类:
其他好文 时间:
2020-05-11 15:09:42
阅读次数:
62
#全局开启mac地址漂移检测(默认开启) [Huawei]mac-address flapping detection #配置接口学习mac地址优先级,默认为0,越大越优先 [Huawei-GigabitEthernet0/0/1]mac-learning priority <0-3> #配置不允许 ...
分类:
系统相关 时间:
2020-05-10 15:08:42
阅读次数:
182
Fiddler抓包快速实战模拟低速网络进行抓包自定义限速:点开Rules-Customize Rules启动Fiddler,使用快捷键Ctrl+R打开Fiddler ScriptEditor窗口 修改时间(自定义时间) 修改时间后,开启功能:Rules-Performances-Simulate M ...
分类:
其他好文 时间:
2020-05-10 11:01:59
阅读次数:
90
题目: 解答: 1 class Solution { 2 public: 3 vector<int> getLeastNumbers(vector<int>& arr, int k) 4 { 5 vector<int> res; 6 priority_queue<int> q; 7 for (int ...
分类:
其他好文 时间:
2020-05-09 16:45:57
阅读次数:
52
# ```class MedianFinder {public: /** initialize your data structure here. */ MedianFinder() { } priority_queue max_heap; priority_queue, greater> min_... ...
分类:
其他好文 时间:
2020-05-03 20:26:14
阅读次数:
66
link class Solution { public: struct Comp{ bool operator()(vector<int>& v1, vector<int>& v2){ return v1[0]+v1[1]>v2[0]+v2[1]; } }; int kthSmallest(vec ...
分类:
其他好文 时间:
2020-05-03 20:13:29
阅读次数:
92
题目 Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following: The number of people in ea ...
分类:
其他好文 时间:
2020-05-02 21:01:34
阅读次数:
57
多线程 创建线程方式1 /** * 创建线程方式1: * 1、继承Thread类 * 2、重写run方法 * 3、调用start开启线程 * 注意:线程开启不一定执行,由CPU调度 */ public class ThreadTest extends Thread{ @Override public ...
分类:
编程语言 时间:
2020-05-01 20:31:23
阅读次数:
67