前端excel带样式导出 exceljs 插件的使用 本来用的xlsx和xlsx-style两个插件,过程一步一个坑,到完全能用要消灭好多bug。这时发现了exceljs,真香😀 案例1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 前端插件使用 #exceljs
vue2 让组件自动按需加载 插件 unplugin-vue-components 配置在vue.config.js文件: 1234567891011121314const AutoComponents = require('unplugin-vue-components/webpack');// const { ElementUiResolver } = require(' vue2 #vue2 #web
微信小程序配置企业微信的在线客服 配置企业微信后台 代码实现1<button @tap="openCustomerServiceChat">打开企业微信客服</button> 1234567891011methods: { openCustomerServiceChat(){ wx.openCustomerServiceChat({ extI uniapp #uniapp #微信小程序
ollama开源机器人的使用案例 下载命令 安装成功你的终端就支持ollama命令了。但是还没有知识库大模型,到模型库选择合适的。中文推荐qwen 安装模型ollama run 模型 由于体积比较大,会很慢,耐心等待 交互试试 ai #ai
使用electron+vue技术快速开发桌面端应用 版本支持12node v16.15.1npm 8.11.0 官方文档 vue2 electronjs 构建应用 vue create demo cd demo vue add electron-builder 此处会提示选择electron版本,选最新的即可 结束后看package.json 启动应用1npm run electron:serve 启动效果 目 electron #electron #终端
hexo 修改默认主题 1.选主题https://hexo.io/themes/ 比如 fluid 1npm install hexo-theme-fluid 2.修改配置文件_config.yml => theme 3.创建主题文件复制一份主题文件 => 改名 4.执行新主题清除缓存 1hexo clean 生成静态文件 1hexo generate 启动项目 1hexo se hexo #hexo #hexo主题 #博客系统
hexo 一分钟快速搭建博客文档,真的超方便 基础要求 环境:node命令:hexo(没有的话就安装:npm install hexo-cli -g) 1.项目初始化1hexo init 项目名 初始化完进如项目 1cd blog 2.安装依赖1npm install 3.运行项目1hexo server 启动效果 完事! hexo #hexo #博客系统
hexo接入github Discussions评论系统 评论存储仓可以是你的博客项目的(github)仓库,也可以单独新建一个评论存储仓库。我的博客项目在gitee上,就以新建存储仓为例: 使用Discussions评论系统必须开通Discussions模块! 安装giscus插件https://github.com/apps/giscus 然后关闭你的安装页面即可 生成giscus配置代码在https://giscus.app/zh-CN 配置 hexo #hexo #hexo主题 #博客系统 #评论系统
node 实现简单爬取文字 首先看我的目录结构: index.js代码如下:123456789101112131415161718192021222324252627282930313233343536373839404142const cheerio = require('cheerio');const http = require('http');const iconv = req node #node #爬虫
node 热更新代码,无需每次重启命令 在node中,每次改完代码都需要执行node命令,才能看效果。安装supervisor实现热更新 执行npm install -g supervisor进行全局安装supervisor 然后在启动node时使用supervis代替node命令: 这次在代码中改完就可以直接去页面刷新了: node #node #热更新