1.根目录下新建vue.config.js 2. module.exports = { lintOnSave: false, devServer: { overlay: { warnings: true, errors: true } } } ...
分类:
其他好文 时间:
2021-02-17 14:39:06
阅读次数:
0
1.打开windows 控制面板 2.输入 vue create -p dcloudio/uni-preset-vue test 3.开始弄npm run serve 如果新增加的页面中用了scss 需要手动安装 npm install -D sass-loader@7.x 如果用版本太高了 会导致 ...
分类:
移动开发 时间:
2021-02-17 14:05:32
阅读次数:
0
如何将用户从一个组中移除? gpasswd -d userName groupName 本文总结了Linux添加或者删除用户和用户组时常用的一些命令和参数。1、建用户: adduser phpq //新建phpq用户 passwd phpq //给phpq用户设置密码 2、建工作组 groupadd ...
分类:
系统相关 时间:
2021-02-17 14:03:04
阅读次数:
0
HelloWorld 随便新建一个文件夹,存放代码 新建一个java文件 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); }} 编译javac jav ...
分类:
其他好文 时间:
2021-02-16 12:44:13
阅读次数:
0
git checkout -b develop origin/develop: 以远程的origin/develop分支为蓝本,在本地新建一个分支develop,并切换到新建的分支develop,并且建立develop与远程分支origin/develop的跟踪关系(use git pull)。查看 ...
分类:
其他好文 时间:
2021-02-15 12:23:59
阅读次数:
0
#阿里云OSS对象存储服务 准备工作 1、在service模块新建子模块service_oss 2、引入pom.xml文件中引入oss服务依赖 <dependencies> <!--aliyunOSS--> <dependency> <groupId>com.aliyun.oss</groupId> ...
分类:
其他好文 时间:
2021-02-15 12:11:15
阅读次数:
0
1.重命名 git branch -m oldBranchName newBranchName 2.删除远程分支:git push origin :oldBranchName 3.将重命名过的分支提交:git push origin newBranchName 4.新建分支 : git branch ...
分类:
其他好文 时间:
2021-02-15 12:07:38
阅读次数:
0
/* { ###################### # Author # # Gary # # 2021 # ###################### */ #include<bits/stdc++.h> #define rb(a,b,c) for(int a=b;a<=c;++a) #de ...
分类:
其他好文 时间:
2021-02-15 12:03:57
阅读次数:
0
CF1477D Nezzar and Hidden Permutations(构造) 题目大意 你需要构造出两个排列 p, q,满足 m 个限制,第 i 个限制为 $ (p_-p_)\times (q_-q_) \ge 0$,最大化 \(\sum [p_i \neq q_i]\) \(1 \le n ...
分类:
其他好文 时间:
2021-02-15 12:02:24
阅读次数:
0
AT1981 [AGC001C] Shorten Diameter \(solved\) AT1982 [AGC001D] Arrays and Palindrome AT1983 [AGC001E] BBQ Hard \(solved\) AT1984 [AGC001F] Wide Swap AT ...
分类:
其他好文 时间:
2021-02-15 11:56:59
阅读次数:
0