摘要:
npm ERR! code EPERMnpm ERR! syscall renamenpm ERR! path D:\program files\nodejs\node_global\node_modules\cnpm\node_modules\npm\node_modules.node-gyp.D 阅读全文
摘要:
/** * 10000 => "10,000" * @param {number} num */export function toThousandFilter(num) { return (+num || 0).toString().replace(/^-?\d+/g, m => m.replac 阅读全文
摘要:
"vue": "2.6.12",@vue/cli 4.5.13npm install postcss-px2rem module.exports = { css: { loaderOptions: { css: {}, postcss: { plugins: [ require('postcss-p 阅读全文
摘要:
在main.js中添加 if (['production', 'staging'].includes(process.env.NODE_ENV)) { window.console.log = () => {} } 阅读全文
摘要:
<section class='app-main'> <transition mode='out-in' name='fade-transform'> //错误示范,会有问题 <!-- <keep-alive :include='$store.state.KeepAliveIncludeArr'>- 阅读全文
摘要:
问题:表单编辑以后回显select 下拉框 ,点击option没反应。原因:如果option是循环赋值来的,数据层次太多,render函数没有自动更新,需手动强制刷新。解决方法:加 @change="$forceUpdate()" 方法就ok ,如下: <el-select @change="$fo 阅读全文
摘要:
vue里面给style标签添加scoped属性之后,css只会作用于当前组件中的元素。 但是这次项目里面出现了父组件的样式影响了子组件的样式。父组件<style scoped> .test{color: #f00;} </style>子组件<template> <div class="test"> 阅读全文
摘要:
<template> <div class='dashboard-container'> <el-cascader ref='cascader' v-model='cascaderValue' v-loading='loading' :disabled='disabled' :props='prop 阅读全文
摘要:
<el-form ref='tableForm' :model='ruleForm' :rules='rules' class='demo-ruleForm'> <el-table :data='ruleForm.list' class='eltableSty' style='width: 100% 阅读全文
摘要:
//正负带小数 pattern: /^[+\-]?(?!0\d)\d+(\.\d+)?$/, //正整数 pattern: /^([1-9]\d*|0)?$/, //正数带小数 /^[+]{0,1}(\d+)$|^[+]{0,1}(\d+\.\d+)$/ const re = /^[+]{0,1}( 阅读全文