会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
一路繁花似锦绣前程
失败的越多,成功才越有价值
导航
博客园
首页
新随笔
联系
订阅
管理
公告
上一页
1
···
9
10
11
12
13
14
15
16
17
···
27
下一页
2021年4月8日
javascript调用摄像头并截图转file对象
摘要: <!DOCTYPE html> <html> <head> <title>js调用摄像头并截图转file对象</title> <meta charset="utf-8"/> </head> <body> <video id="video" width="300" height="300"></vid
阅读全文
posted @ 2021-04-08 21:28 一路繁花似锦绣前程
阅读(230)
评论(0)
推荐(0)
编辑
2021年3月31日
nuxt整合mavon-editor(markdown富文本编辑器)
摘要: 1、npm i -S mavon-editor 2、plugins新建mavon-editor.js import Vue from 'vue' import mavonEditor from 'mavon-editor' Vue.use(mavonEditor) 3、配置nuxt.config.j
阅读全文
posted @ 2021-03-31 22:18 一路繁花似锦绣前程
阅读(382)
评论(0)
推荐(0)
编辑
2021年3月25日
nuxt服务端操作cookie
摘要: 1、npm i -S cookie-universal-nuxt 2、nuxt.config.js modules: [ 'cookie-universal-nuxt' ] 3、使用 * 服务端(store/index.js) const actions = { // nuxt提供的,每次刷新页面都
阅读全文
posted @ 2021-03-25 13:09 一路繁花似锦绣前程
阅读(489)
评论(0)
推荐(0)
编辑
nuxt配置环境变量
摘要: 1、npm i -D cross-env 2、配置package.json "scripts": { "dev": "cross-env NODE_ENV=dev nuxt", "build": "nuxt build", "start": "cross-env NODE_ENV=prod nuxt
阅读全文
posted @ 2021-03-25 13:08 一路繁花似锦绣前程
阅读(253)
评论(0)
推荐(0)
编辑
2021年3月17日
OAuth2单点登录知识点
摘要: ###一、前端 #####1、前端知识点 登录并重定向 /?redirectURL= 退出并重定向 /logout?redirectURL= 刷新令牌并重定向 /refresh?redirectURL= 登录及刷新令牌接口,需提供OAuth2认证所需的客户端id及密码 url组成 协议://主机名.
阅读全文
posted @ 2021-03-17 19:59 一路繁花似锦绣前程
阅读(149)
评论(0)
推荐(0)
编辑
2021年3月16日
nuxt整合element-ui
摘要: 1、npm i -S element-ui 2、新建element-ui插件 import Vue from 'vue' import ElementUI from 'element-ui' Vue.use(ElementUI) 3、配置nuxt.config.js css: [ 'element-
阅读全文
posted @ 2021-03-16 16:24 一路繁花似锦绣前程
阅读(192)
评论(0)
推荐(0)
编辑
2021年3月12日
nuxt知识点
摘要: 1、nuxt.config.js * server: { port: '3000',//服务端口号 host: '0.0.0.0' } * 全局的配置文件 2、layouts * 默认default,自定义组件不会省略index * 路由组件标签<nuxt/> * layout() {//使用自定义
阅读全文
posted @ 2021-03-12 16:37 一路繁花似锦绣前程
阅读(170)
评论(0)
推荐(0)
编辑
2021年3月8日
canvas图层添加拖拽事件
摘要: <template> <div style="height: 100%;text-align: center"> <canvas id="cvs" width="600" height="600"></canvas> </div> </template> <script> export defaul
阅读全文
posted @ 2021-03-08 16:31 一路繁花似锦绣前程
阅读(265)
评论(0)
推荐(0)
编辑
2021年3月4日
监听属性改变defineProperty和文档碎片createDocumentFragment
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>ll</title> </head> <body> <div id="el"> <div>xxx</div> <div>yyy</div> </div> <sc
阅读全文
posted @ 2021-03-04 17:44 一路繁花似锦绣前程
阅读(57)
评论(0)
推荐(0)
编辑
2021年2月1日
css mask文字渐变+clip-path裁剪路径+border-image图片边框
摘要: 一、mask <template> <div> <div class="textGradient" data-text="这是一段中文">这是一段中文</div> </div> </template> <script> export default { name: "a9" } </script>
阅读全文
posted @ 2021-02-01 09:10 一路繁花似锦绣前程
阅读(377)
评论(0)
推荐(0)
编辑
上一页
1
···
9
10
11
12
13
14
15
16
17
···
27
下一页