运行项目出现
./node_modules/pdfjs-dist/build/pdf.js 1132:13 Module parse failed: Unexpected token (1132:13) You may need an appropriate loader to handle this file type.
说明pdf.js 版本不对
解决方案:
npm uninstall pdfjs-dist
npm install pdfj…
接手别的同事的Vue项目,下载好依赖,执行npm run dev运行的时候,出现问题,如下: 根据报错信息发现"pdfjs-dist"装的也有,项目中也有用到,版本是2.0.943: 此时,…
这个得先了解:并查集
并查集板子:
#include<bits/stdc.h>
using namespace std;
typedef long long ll;
const int mod1e97;
const int m100008;
/*
规则:1.初始化、合并(谁当谁领导问题)、查询
注意:1.每棵树记录树高2.两棵树树高不…