1 cors和csrf的区别2 路飞首页 -页面组件:设置一个路由,当在浏览器访问某个路径,就会显示这个页面组件 -头部组件 -轮播图组件 -页面跳转的两种方式 -<router-link :to='/home'>点我看美女</router-link> -js中写:this.$router.push ...
分类:
其他好文 时间:
2021-06-18 18:47:13
阅读次数:
0
1. 打包javascript 1) 安装所需的包 npm install --save-dev @babel/core @babel/cli @babel/preset-env 2) 设置配置 方式一:babel.config.json { "presets": [ [ "@babel/env", ...
分类:
其他好文 时间:
2021-06-17 16:51:37
阅读次数:
0
flex-shrink: 0; white-space: nowrap; ...
分类:
其他好文 时间:
2021-06-17 16:39:23
阅读次数:
0
RGB与YUV 色彩空间(Color Space)[1]:is a specific organization of colors. In combination with physical device profiling, it allows for reproducible represent ...
分类:
其他好文 时间:
2021-06-16 18:25:08
阅读次数:
0
#linux目录和文件管理 ##一、linux目录结构 树形目录结构 根目录 所有分区、目录、文件等的位置起点 整个树形目录结构中,使用一个**“/”**表示 常见的子目录 /root、/bin、/boot、/dev、/etc、/home、/var、/usr、/sbin ###1.1、linux目录 ...
分类:
系统相关 时间:
2021-06-16 18:09:40
阅读次数:
0
#linux目录和文件管理 ##一、linux目录结构 树形目录结构 根目录 所有分区、目录、文件等的位置起点 整个树形目录结构中,使用一个**“/”**表示 常见的子目录 /root、/bin、/boot、/dev、/etc、/home、/var、/usr、/sbin ###1.1、linux目录 ...
分类:
系统相关 时间:
2021-06-16 18:00:42
阅读次数:
0
原文: https://maplemei.gitee.io/xm-select/#/component/install https://gitee.com/maplemei/xm-select https://maplemei.gitee.io/xm-select/#/basic/prop 代码 < ...
分类:
其他好文 时间:
2021-06-15 18:52:43
阅读次数:
0
newton_forward_interpolation 牛顿向前插值法 参考: https://zhuanlan.zhihu.com/p/66793653 https://www.geeksforgeeks.org/newton-forward-backward-interpolation/ 插值 ...
分类:
其他好文 时间:
2021-06-15 18:43:51
阅读次数:
0
from turtle import *def square(size=50): pencolor('orange') for i in range(4): fd(size) left(90)def main(): setup(800,600) speed(0) for i in range(10) ...
分类:
其他好文 时间:
2021-06-15 18:22:41
阅读次数:
0
task 3 def square(size=50, rgb = 'orange'): pencolor(rgb) for i in range(4): fd(size) left(90) def main(): setup(800, 600) speed(0) for i in range(10) ...
分类:
其他好文 时间:
2021-06-15 18:11:32
阅读次数:
0