全屏水印
// 页面添加水印效果 const setWatermark = (str: string) => { const id = '1.23452384164.123412416'; if (document.getElementBy......
这家伙很懒,还没填写该栏目的介绍呢~
// 页面添加水印效果 const setWatermark = (str: string) => { const id = '1.23452384164.123412416'; if (document.getElementBy......
效果图 1. main.js import { createApp } from 'vue' import './style.css' import App from './App.vue' const app = createApp(App) // 设置颜色 ......
思路一: 前端 切片+索引,后端:存储切片, 前端发送合并请求,后端合并 切片返回新文件...
pinia 报错:如下 pinia.esm-browser.js:1671 Uncaught Error: [**]: getActivePinia was called with no active Pinia. Did you forget to install pinia? const pinia = c......
环境:全新的vite+vue3+ts 项目 第一步,安装eslint pnpm install eslint --save-dev 第二步,生成一个配置文件 pnpm eslint --init 以下是我选的配置:记录一下 ...
/** at()方法接收一个整数值并返回该索引的项目,允许正数和负数。负整数从数组中的最后一个项目开始倒数。 要点: 1. js的数组不存在数组越界,访问越界直接返回:undefined 2. 可以填写负数值 个人理解:数组取值的 arr[0] === arr.at(0) ,at 可以 通过正负数 取值而已 入参:st......
call,apply,bind的区别 call 参数一:要指向的对象,参数1.... 是形参 apply 参数一:要指向的对象,参数1.... 是数组形参 bind 参数一:要指向的对象,参数1.... 是形参,bind会返回一个函数,需要自己调用执行 var......
1. this默认指向window 非严格模式 函数this默认指向window(也可以说指向全局对象Global) 严格模式 函数this指向undefined 2. this隐式指向 函数调用时,this指向上级对象(this指向......
Array.reduce( Function, initValue ) 两个参数都非常的重要(虽然第二个可有可无) Function: 不用说,肯定是个回调函数。由开发者提供 reduce 来回调 initValue: 第一次回调 Function 时会将 initValue 传入到 Function 的第一个......
原因: /** * 原因: 此时会发现编译器会提示个错误:找不到模块“./app.vue”,.css,.less,.json或其相应的类型声明 * 因为直接引入.vue文件 TS会找不到对应的类型声明;所以需要新建typings(命名没有明确规定,TS会自动寻找.d.ts文件)文件夹......