03 2020 档案
摘要:env: { browser: true, jquery: true }, rules: { // 强制有分号 semi: ['error', 'always'], // 逗号 "comma-dangle": [0, "never"], //函数定义时括号前面要不要有空格 'space-before
阅读全文
摘要:1.安装 Prettier插件 Prettier - Code formatter 2.在setting.json配置里 "prettier.useEditorConfig": false, "prettier.semi": true, // 是否带分号 "prettier.singleQuote"
阅读全文
摘要:/** * 页面刷新导航保持高亮 */ menuList() { let path = this.$route.matched[2].path this.navList.forEach((e, i) => { if (path.indexOf(e.query.path) != -1) { this.
阅读全文
摘要:<template> <div class="pagination_box"> <div class="pagination_wrap"> <ul class="clearfix"> <!-- prev --> <li class="first btn" :class="{'disabled': c
阅读全文
摘要:1.将loex.keystore文件复制到jdk的bin目录下, 如(C:\Alan\software\Java\jdk1.8.0_181\bin) 2.查看keystore的信息 keytool -list -keystore loex.keystore -alias loex.keystore
阅读全文
摘要:1. 首先得在极光注册开发者帐号: 附上极光官网连接https: //www.jiguang.cn/2. 创建好帐号后点进进入极光开发者服务》》 创建应用3. 创建好应用会生成一个AppKey(后面需要), 到这里还没完, 切记点击下方的完成推送设置按钮4. 点击后在推送设置里填写应用包名, 一定要
阅读全文
摘要:window.onresize = () => { return (() => { let currentWidth = (document.documentElement.clientWidth || window.innerWidth) this.$store.commit('SETSCREEN
阅读全文
摘要:<template> <div class="common_conponents common_conponents_base_input"> <div class="input_item_wrap" v-if="property.type 'text' || property.type 'pass
阅读全文