04 2023 档案
发表于 2023-04-10 15:40阅读:110评论:0推荐:0
摘要:const container = document.querySelector('.charts') 1、不需要跟新数据 window.addEventListener("resize", () => { container.resize(); }); 2、需要更新数据 function debo
阅读全文 »
发表于 2023-04-07 12:24阅读:246评论:0推荐:0
摘要:第一步:分别找出双y轴的最大最小值 const max1 = Math.max(...data1);const min1 = Math.min(...data1) ;const max2 = Math.max(...data2) ;const min2 = Math.min(...data2) ;
阅读全文 »
发表于 2023-04-07 12:22阅读:6评论:0推荐:0
摘要:组合式API:setup 在beforecreate之前就执行了。 import { ref, toRefs, toRef , h} from 'vue' export default { props:{ name: { type: String } }, //setup中使用props中的数据 s
阅读全文 »
发表于 2023-04-07 12:22阅读:117评论:0推荐:0
摘要:prerender-spa-plugin 预渲染 vue-cli是单页项目,只有一个index.html,对seo问题不优化 prerender-spa-plugin 预渲染可以生产多个目录,每个目录下都有一个index.html 适合:一个项目可能某几个页面需要做seo prerender-spa
阅读全文 »