码迷,mamicode.com
首页 >  
搜索关键字:pre    ( 61914个结果
vue3.0使用ant-design-vue进行按需加载原来这么简单
下载 ui库 yarn add ant-design-vue 默认是全局引入,打包后体积很大, 非常影响首屏加载速度, 按需加载 下载按需加载的插件;推荐使用cnpm cnpm install babel-plugin-import --save-dev 下载在开发环境中 在项目的根目录下创建 ba ...
分类:其他好文   时间:2021-07-29 16:21:44    阅读次数:0
Ubuntu18.04安装qemu遇到问题-qemu : Depends: qemu-system (>= 1:2.11+dfsg-1ubuntu7)
在Ubuntu虚拟机中,模拟arm开法环境的话,一般是需要交叉编译工具链和qemu来配合使用。安装qemu过程中遇到的问题,我将记录下来。 sudo apt-get install qemu 处理办法便是,依照这个链接进行。如果你能成功那自然好。但是我并没有成功,安装aptitude的时候出现了这个 ...
分类:系统相关   时间:2021-07-28 21:25:33    阅读次数:0
TypeError: ('Keyword argument not understood:', 'input')
源代码: model = Model(input=X_input, output=[x]) 错误提示: 修正: model = Model(inputs=X_input, outputs=[x]) ...
分类:其他好文   时间:2021-07-28 21:23:54    阅读次数:0
C语言常用函数-isspace()判断字符是否为空白字符函数
演示版本 VS2013 isspace()函数 isspace()函数用于判断字符是否为空白字符。 语法 int isspace(int ch); isspace()函数的语法参数说明如下: 参数ch为一个待检查的字符。 isspace()函数的返回值:不是空白字符返回0,是则返回非0。 示例 本示 ...
分类:编程语言   时间:2021-07-28 21:23:23    阅读次数:0
[Linux]Shell编程【待续】
1 获取当前脚本所处目录路径 #!/bin/bash work_dir=$(cd $(dirname $0);pwd) echo $work_dir ...
分类:系统相关   时间:2021-07-28 21:18:02    阅读次数:0
pdf转图片加水印压缩
''' pip install pymupdf pip install pillow ''' import os import uuid import fitz from PIL import Image, ImageDraw, ImageFont import zipfile basedir = ...
分类:其他好文   时间:2021-07-27 17:38:27    阅读次数:0
FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。
源代码: train_dir = os.path.join(base_dir, 'train') os.mkdir(train_dir) 错误提示: FileExistsError: [WinError 183] 当文件已存在时,无法创建该文件。 修改代码: train_dir = os.path. ...
分类:Windows程序   时间:2021-07-26 16:53:37    阅读次数:0
docker 命令发布,删除 .net core
dockerfile文件 #See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. FRO ...
分类:Web程序   时间:2021-07-23 17:38:17    阅读次数:0
vue+elemet ui在导航栏选中的情况下去点击其他路由链接,此时导航栏应该是未选中状态,应该怎样设置?
问题描述 在Menu导航栏中选中菜单栏,在刷新页面后,菜单仍然是选中状态 菜单的index值为路由导航地址,通过sessionStorage将当前选中的地址保存起来,实现效果。 setSelectPath(path){ window.sessionStorage.setItem('selectPat ...
分类:其他好文   时间:2021-07-22 17:42:50    阅读次数:0
UITableView/UICollectionView调用reloadData刷新时界面闪烁
使用UITableView、UICollectionView时,当数据变更了,需要重新调用reloadData刷新时,有时候界面会出现闪烁。 造成闪烁的原因,主要是因为CALayer有一个隐式动画,只要在调用reloadData刷新时,关闭隐式动画就可以避免了。代码示例如下: [CATransact ...
分类:其他好文   时间:2021-07-22 17:41:22    阅读次数:0
61914条   1 2 3 4 ... 6192 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!