echarts结构拆分

最近一直使用echarts制作公司后台网站,今天在浏览信息时发现了一张很清晰的分析图片。

TabNine

TabNine一款强烈推荐的自动补全插件。AI机器学习本地常用代码,用起来特别爽… vscode: 123ctrl + pext install TabNine.tabnine-vscode 就可以完成安装使用了。

echarts-toolTip文字对齐配置

echarts-toolTip文字对齐配置今天在用echarts的过程中,发现tooltip中配置并没有文字的对齐项,但是在主题的配置中,可以这样修改tooltip的配置,依然会生效,达到目的: 12345"tooltip": { "textStyle": &#...

vue通信方式汇总

vue 通信方式汇总 父级往子级通信 – propsparent: 1234567891011121314151617181920212223242526 <template> <div> parent <child :msg="parentmsg"...

npm 409

taobao源导致的409错误今天在发布测试的img工具包的时候,突然发现npm publish失败了,409错误,提示用户冲突,卸载了cnpm 包都没效果,于是安装nrm源管理工具, 12345678iMac:dongwudi.github.io $ nrm ls npm ---- https://regis...

commander命令行工具

commander命令行工具12345678910111213141516171819202122232425262728const program = require('commander');const chalk = require('chalk');async fu...

chmod

chmod 命令修改文件权限在自定义命令实现过程中,写了一个文件内容为 123#!/usr/bin/env nodeconsole.log('hello') #!/usr/bin/env node告诉操作系统在运行这个文件文件的时候,需要用node的解析器来解析如果执行这个文件: 12iMa...

live2d

hexo 添加live2d模型 插件下载1npm install --save hexo-helper-live2d 模型下载模型git地址 1npm install live2d-widget-model-miku _config.yml配置live2d 12345678910111213141...

hexo anatole 添加分类标签

menu添加,生成 _config.yml 123456menu: Home: / Archives: /archives Tags: /tags Categories: /categories About: /about categories tags 12$ hexo new page &apo...

mac mysql安装

安装地址 123456cd /usr/local/mysql/binvim ~/.bash_profile添加内容: PATH=$PATH:/usr/local/mysql/bin想要配置的内容立即生效: source ~/.bash_profile 连接mysql: 1mysql -u root -p ...