自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 Mac环境 chrome安装 vue-devtools插件

1.先从github克隆项目 git clone -b master https://github.com/vuejs/vue-devtools.git 2.进入项目的根目录,安装依赖 cnpm install 3.打包项目 npm run build 4.进入项目文件夹/shells/chrome 拷贝chrome文件夹到chrome浏览器的文件夹中 /用户/simon/资源库/Application Support/Google/Chrome/Default 5.进入谷歌浏览器,输入chrome

2020-06-10 12:56:03 621 1

原创 vue中解决跨域问题

1.首先在vue项目中的config/index.js文件中添加如下配置 proxyTable: { '/api': { // 测试环境 target: 'http://127.0.0.1:5000/', // 接口域名 changeOrigin: true, //是否跨域 pathRewrite: { ...

2020-05-07 12:32:40 143

原创 python @property setter装饰器

class Person: def __init__(self,name): self._name = name # 利用property装饰器将获取name方法转换为获取对象的属性 @property def name(self): return self._name # 利用property装饰器将设置name方法转换为获取对象的属性 @name...

2020-04-03 23:41:09 89

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除