
vue
计算机技术之指尖密码
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
封面
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="utf-8"> <title>grebell 教程</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content="grebell原创 2020-05-27 17:31:35 · 413 阅读 · 0 评论 -
切换菜单
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> a{ text-decoration: none; color: black; } #menu{ width: 100%; height: 20px;原创 2020-05-27 09:22:56 · 148 阅读 · 0 评论 -
lesson2
jvm https://github.com/Mihoks/JVM-Notes javaweb https://github.com/lmblogs/javawebrm spring boot https://github.com/souyunku/SpringBootExamples https://github.com/LiHaodong888/SpringBootLearn https://github.com/fishpro/spring-boot-study pytorch https://git原创 2020-05-26 12:12:03 · 137 阅读 · 0 评论 -
address
编程之法:面试和算法心得 https://github.com/julycoding/The-Art-Of-Programming-By-July java面试笔试 https://github.com/hadyang/interview https://github.com/NotFound9/interviewGuide 后端面试题汇总 https://github.com/yongxinz/back-end-interview 前端面试 https://github.com/CavsZhouyou/F原创 2020-05-25 19:10:38 · 746 阅读 · 0 评论 -
vue引入kindeidtor
1.去官网下载kindeditor 2.将其放在一个名为kindeditor的文件夹里,并且将它放在vue里的static文件夹下 3.创建kindeditor.vue ```javascript <template> <div class="kindeditor"> <textarea :id="id" v-model="content"></textarea> </div> </template> <sc原创 2020-05-22 10:35:47 · 943 阅读 · 0 评论 -
nginx
#user nginx; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { log_format main '$remote_addr - $re原创 2020-05-21 16:08:02 · 152 阅读 · 0 评论 -
web安全
web 安全 1.跨站脚本攻击(XSS) https://www.cnblogs.com/fundebug/p/details-about-6-web-security.html 2.跨站点请求伪造(CSRF) https://www.cnblogs.com/fundebug/p/details-about-6-web-security.html 3.点击劫持(Click Jacking) https://www.cnblogs.com/fundebug/p/details-about-6-web-secu原创 2020-05-21 11:37:39 · 246 阅读 · 0 评论 -
es6
1.let const let ES6中新增let关键字,用来声明局部变量。let关键字声明的变量只在局部代码块有用,超出作用域内将不再生效, 不同于var关键字,全局有效 例如如下实例 function varAndConst() { let i = 10; var j = 12; } console.log(i);//提示未定义 console.log(j);//输出12 let关键字具有块级作用域,超出作用域将不在生效。因此适用于循环,判断等只在块级作用域生效的变量 例如如原创 2020-05-20 16:56:53 · 174 阅读 · 0 评论 -
axios接口
import axios from 'axios'; import qs from 'qs'; import { MessageBox } from 'element-ui'; import router from 'router/index'; let hasConfirm = false; // axios 配置 axios.defaults.withCredentials = true; axios.defaults.timeout = 120000; // 根据实际情况,调整为服务器地址 axio原创 2020-05-20 00:22:59 · 355 阅读 · 0 评论 -
vue中使用codemirror
npm install vue-codemirror --save import { codemirror } from 'vue-codemirror' import 'codemirror/lib/codemirror.css' import 'codemirror/theme/darcula.css' //这个是你设置了什么主题,就要对应的在main.js中引入主题的css <...原创 2020-04-28 17:19:41 · 560 阅读 · 0 评论 -
vue重点难点
1.安装环境以及初始化单页项目 (1)安装node.js node中会自带npm (2)网络不好时可用cnpm代替npm cnpm install npm -g (3)安装vue cnpm install vue (4)安装vue-cli,用于快速搭建大型单页应用 cnpm install --global vue-cli (5)初始化vue项目 vue init webpack my-proj...原创 2020-03-19 09:31:44 · 2129 阅读 · 0 评论