摘要: 基于父元素的宽度计算是否需要展示el-tooltip <template> <el-tooltip class="item" :effect="effect" :content="content" placement="top-start" :disabled="showPopper"> <slot 阅读全文
posted @ 2024-05-09 15:59 wjs0509 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 使用 vite-plugin-seo-prerender 做页面预渲染 安装 vite-plugin-seo-prerender 解决打包多个页面 yarn add vite-plugin-seo-prerender -D 配置vite.config文件 import seoPrerender fr 阅读全文
posted @ 2024-02-29 09:43 wjs0509 阅读(626) 评论(0) 推荐(0) 编辑
摘要: <template> <div ref="friendsTrend" class="mt-16 friendsTrend" /> </template> <script> import * as echarts from 'echarts' import moment from 'moment' i 阅读全文
posted @ 2024-02-20 17:34 wjs0509 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 安装 npm install html2canvas or yarn add html2canvas 引入 import html2canvas from 'html2canvas' 使用 <div ref="canvasDom"> <div ref="businessCard">这是需要生成图片的 阅读全文
posted @ 2024-01-24 20:18 wjs0509 阅读(5395) 评论(0) 推荐(0) 编辑
摘要: node版本: =14.21.3 || >=16.0.0 一、配置ESlint 1.1 安装eslint npm install eslint -D 1.2 初始化eslint,生成配置文件 npx eslint --init 1.3 在编辑器安装ESlint插件 1.4 通过执行命令检测文件代码规 阅读全文
posted @ 2023-12-19 15:39 wjs0509 阅读(793) 评论(0) 推荐(0) 编辑
摘要: 1. 首先需要安装vite-plugin-html插件 yarn add vite-plugin-html -D or npm install vite-plugin-html -D 2. 在vite.config.ts文件中增加如下代码: import { createHtmlPlugin } f 阅读全文
posted @ 2023-12-09 17:50 wjs0509 阅读(280) 评论(0) 推荐(0) 编辑
摘要: 组件: <template> <div> <van-pull-refresh v-model="refreshing" @refresh="onRefresh" :disabled="disabled" :style="fullScreen? 'min-height: 100vh;': ''"> < 阅读全文
posted @ 2023-11-14 20:21 wjs0509 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 结合 html2canvas 和 jspdf 插件处理 /* eslint-disable */ //不使用JQuery版的 import html2canvas from 'html2canvas' import JsPDF from 'jspdf' /** * @param ele 要生成 pd 阅读全文
posted @ 2023-10-30 20:20 wjs0509 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 1、校验数据类型 export const typeOf = function(obj) { return Object.prototype.toString.call(obj).slice(8, -1).toLowerCase() } 示例: typeOf('树哥') // string type 阅读全文
posted @ 2023-10-20 09:16 wjs0509 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 1.使用 vue create projectName 新建一个项目 2.将src的文件夹名称改为example,便于我们调试代码 3.增加packages文件夹,其下面的index.js代码如下 import panel from './panel/index.vue' const compone 阅读全文
posted @ 2023-09-11 09:38 wjs0509 阅读(577) 评论(0) 推荐(0) 编辑