上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: vue脚手架 <template> <div class="s-canvas"> <canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas> </div> </template> <script> con 阅读全文
posted @ 2020-11-27 20:35 小泽沐优声 阅读(128) 评论(0) 推荐(0)
摘要: 获取现在时间 并转换格式 class Point{ nowTime(format){ //时间转换格式 let date = new Date(),times; if(format=='yy-mm-dd hh:mm:ss'){//yy-mm-dd hh:mm:ss times=date.getFul 阅读全文
posted @ 2020-11-26 12:08 小泽沐优声 阅读(556) 评论(0) 推荐(0)
摘要: 换行 \n 空格 \xa0 代码-例子 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title 阅读全文
posted @ 2020-11-21 17:52 小泽沐优声 阅读(906) 评论(0) 推荐(0)
摘要: JavaScript Cookie A simple, lightweight JavaScript API for handling cookies Works in all browsers Accepts any character Heavily tested No dependency S 阅读全文
posted @ 2020-11-19 17:41 小泽沐优声 阅读(343) 评论(0) 推荐(0)
摘要: 淘宝镜像安装 地址:https://registry.npm.taobao.org 指令 npm install -g cnpm --registry=https://registry.npm.taobao.org 阅读全文
posted @ 2020-11-16 15:38 小泽沐优声 阅读(190) 评论(0) 推荐(0)
摘要: 想在app.vue触发 在全局组件注册一个方法,该方法控制router-view的显示与否,可接受参数. <template> <div id="app"> <router-view v-if="isRouterAlive"></router-view> </div> </template> <sc 阅读全文
posted @ 2020-11-13 09:41 小泽沐优声 阅读(200) 评论(0) 推荐(0)
摘要: 全局安装 npm install webpack -g 查看webpack版本 webpack -v如果没出现 安装webpack-cli(webpack 4x以上,webpack将命令相关的内容都放到了webpack-cli) npm install --global webpack-cli 阅读全文
posted @ 2020-11-08 21:54 小泽沐优声 阅读(1143) 评论(0) 推荐(0)
摘要: 随机生成验证码 const createCode = obj =>{ let code = ""; let codeLength = obj.numb||4; //验证码的长度 默认4 let random = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 'A', 阅读全文
posted @ 2020-11-08 16:11 小泽沐优声 阅读(131) 评论(0) 推荐(0)
摘要: 半环进度条 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>HTML5 Canvas 圆形进度条并显示数字百分比</title> <style> *{margin:0;padding:0;} body{tex 阅读全文
posted @ 2020-11-05 22:23 小泽沐优声 阅读(103) 评论(0) 推荐(0)
摘要: 出现在vue3版本 找到tsconfig.json文件 增加"noImplicitAny":flase,或把"strict":true改成"strict":false 阅读全文
posted @ 2020-11-05 17:09 小泽沐优声 阅读(1134) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页