https://www.npmtrends.com/react-bootstrap-vs-material-ui-vs-semantic-ui-vs-element-ui-vs-weui
/************************************************************************************************************************/
发现一个好东西:
jsplumb连线工具库
https://github.com/jsplumb/jsplumb
在 Vue 中使用 jsPlumb 的简单 Tutorial
https://zhuanlan.zhihu.com/p/41808577
Jsplumb基础教程(vue+jsplumb+d3)
https://blog.csdn.net/weixin_39085822/article/details/106879459
vue项目中使用jsplumb流程图(以及类似官网的放大缩小漫游)
https://blog.csdn.net/ya_nan_zhang/article/details/90643887
jsplumb创建弯曲的连接
https://stackoverflow.com/questions/25026560/jsplumb-create-curved-connection
jsplumb简单使用参考
import { jsPlumb } from 'jsplumb'
// 连接点定义
const dot = {
isSource: false,
isTarget: false,
maxConnections: -1,
endpoint: [
'Dot',
{
radius: 3
}
]
}
// 获得jsPlumb实例
const plumbIns = jsPlumb.getInstance({
Container: '外层容器的id',
PaintStyle: {
stroke: '#B9C1D4',
strokeWidth: 1
}
})
// 创建连线
plumbIns.ready(function() {
const info = [
['Source的id', 'target的id']
]
for (const item of info) {
plumbIns.connect(
{
source: item[0],
target: item[1],
anchor: ['Right', 'Left'],
connector: [
'Flowchart',
{
curviness: 50,
cornerRadius: 5,
gap: 3
}
]
},
dot
)
}
})
其他参考:
Render and Compile String using vue.js
https://stackoverflow.com/questions/54617255/render-and-compile-string-using-vue-js
How can I compile the v-html content inside the template of a component?
https://forum.vuejs.org/t/how-can-i-compile-the-v-html-content-inside-the-template-of-a-component/86966
Render v-html as VUE components
https://stackoverflow.com/questions/51006553/render-v-html-as-vue-components
Vue - How to render HTML in vue components
https://stackoverflow.com/questions/56881982/vue-how-to-render-html-in-vue-components
How to get the latest record in each group using GROUP BY? [duplicate]
https://stackoverflow.com/questions/10999522/how-to-get-the-latest-record-in-each-group-using-group-by
Retrieving the last record in each group - MySQL
https://stackoverflow.com/questions/1313120/retrieving-the-last-record-in-each-group-mysql
mysql分组取最大(最小、最新、前N条)条记录
https://www.cnblogs.com/fps2tao/p/9041175.html
mysql sql技巧: 子查询改为连接查询&&涉及多个表的删除和更新
https://blog.csdn.net/clark_xu/article/details/52892862
SQL中JOIN与子查询的优劣
https://segmentfault.com/q/1010000000134455
MySQL子查询改写为表连接
https://bbs.huaweicloud.com/forum/thread-79003-1-1.html
mysql 分组查询取各分组的前两名及子查询性能优化
https://blog.csdn.net/sinat_41780498/article/details/79956561
用于查询和数据库性能调整 的MySQL优化工具使用MySQL优化工具实现快速的性能调整
https://www.solarwinds.com/database-performance-analyzer/use-cases/mysql-optimization
How can we convert subqueries to LEFT JOIN?
https://www.tutorialspoint.com/How-can-we-convert-subqueries-to-LEFT-JOIN
通过本教程提高MySQL性能
https://stackify.com/mysql-tutorial-improve-performance/?_ga=2.195980908.1588041097.1615425235-343887412.1594795109
v-contextmenu
https://github.com/heynext/v-contextmenu
ant design vue 和 v-contextmenu右键点击菜单实现树tree 增删改查
https://blog.csdn.net/luyu13141314/article/details/101690316
Ivy 是 Angular 框架的新一代编译器。
https://twohappy.me/2020/04/05/ivy-and-view-engine/
Angular 4 Renderer2 Example
https://www.concretepage.com/angular-2/angular-4-renderer2-example
mull install
https://mull.readthedocs.io/en/latest/Installation.html
https://stackoverflow.com/questions/56567351/mutation-testing-fails-with-mull
webpack 填坑之路--提取独立文件(模块)
https://segmentfault.com/a/1190000011920743
调试webpack的插件
https://blog.csdn.net/AtalantaDavis/article/details/97040240
同样在 Chrome 88 和 Edge 88 中被删除的功能还有 FTP 协议的支持,使用浏览器打开 FTP 站点时,浏览器会弹出使用系统中的其他应用来打开 FTP 链接的提示。
如果你在平时的学习和工作中需要经常用到 FTP 访问,当然也可以配置其他浏览器来进行操作,比如 IE。
以上便是我们整理的 Chrome 88 和 Edge 88 本次更新的 12 个功能亮点,截至发稿,Chrome 88 稳定版已经开始推送,Edge 88 稳定版根据计划将于本周内推送完毕。
https://www.163.com/dy/article/G11C316E05119NPR.html
js位操作
https://stackoverflow.com/questions/1436438/how-do-you-set-clear-and-toggle-a-single-bit-in-javascript
gtest 参数化
https://www.cnblogs.com/jiangyibo/p/9826300.html
other:
avenueui
rxjs
jsplumb
lodash