上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 44 下一页
摘要: #输入命令 [root@localhost ~]# unzip [选项] 压缩包名 参数详解 选项 含义 -d 目录名 将压缩文件解压到指定目录下。 -n 解压时并不覆盖已经存在的文件 -o 解压时覆盖已经存在的文件,并且无需用户确认。 -v 查看压缩文件的详细信息,包括压缩文件中包含的文件大小、文 阅读全文
posted @ 2021-08-30 16:42 胸怀丶若谷 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 错误代码 解决方案 删除div标签。修改后,如下所示: 阅读全文
posted @ 2021-08-30 11:47 胸怀丶若谷 阅读(2147) 评论(0) 推荐(0) 编辑
摘要: 输入以下命令 npm config set proxy null npm config set https-proxy null 之后重新安装即可 文章参考 https://blog.csdn.net/yypsober/article/details/51906616 阅读全文
posted @ 2021-08-29 19:35 胸怀丶若谷 阅读(2734) 评论(0) 推荐(0) 编辑
摘要: 改为这样,把所有值设为true mounted() { // 滚动条 this.scroll = new BScroll(this.$refs.wrapper, { click: true, observeDOM: true, observeImage: true, // 监听 probeType: 阅读全文
posted @ 2021-08-26 10:33 胸怀丶若谷 阅读(744) 评论(0) 推荐(0) 编辑
摘要: output_data["ShipDate"] = output_data["ShipDate"].dt.strftime("%Y/%m/%d") 阅读全文
posted @ 2021-08-23 14:09 胸怀丶若谷 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 错误代码 <swiper> <swiper-item v-for="item in banners"> <a :href="item.link"> <img :src="item.image" alt=""> </a> </swiper-item> </swiper> 正确代码 <swiper> < 阅读全文
posted @ 2021-08-20 16:53 胸怀丶若谷 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 安装并引用 安装 npm install vue-router ##引用 步骤一:在src路径下,创建router文件夹, 其下创建index.js // router/index.js import Vue from 'vue' import VueRouter from 'vue-router' 阅读全文
posted @ 2021-08-20 10:48 胸怀丶若谷 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #vue cli 3的写法 module.exports = { configureWebpack: { resolve:{ extensions:[], alias:{ 'assets':'@/assets', 'common':'@/common', 'components':'@/compon 阅读全文
posted @ 2021-08-20 10:43 胸怀丶若谷 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 如下图所示设置即可 会自动在同级目录中创建img文件夹,并存储图片 阅读全文
posted @ 2021-08-19 23:06 胸怀丶若谷 阅读(46) 评论(0) 推荐(0) 编辑
摘要: $route对象 该对象表示当前的路由信息,包含当前URL解析得到的信息。包含当前的路径,参数,query对象等。其常用方法如下所示: $route.path 字符串,对应当前路由的路径,总是解析为绝对路径,如"/foo/bar" $route.params 一个 key/value 对象,包含了 阅读全文
posted @ 2021-08-12 14:20 胸怀丶若谷 阅读(121) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 44 下一页