- 博客(7)
- 收藏
- 关注
原创 npm\nrm无法加载文件、因为在此系统禁止执行脚本解决方式
npm\nrm无法加载文件、因为在此系统禁止执行脚本解决方式nrm : 无法加载文件 C:\Users\cola\AppData\Roaming\npm\nrm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。解决方法1、右键win图标,打开Windows PowerShell(管理员)2、 使用报错3、解决改变执行策略更改为 Remo
2021-11-11 10:51:34 4092 2
原创 element-ui 时间日期选择器禁选
disabledDate可以设置element-ui里面的日期禁选,使用picker-options:"pickerOptions"<el-date-pickerv-model=“time”type=“date”:picker-options=“pickerOptions”placeholder=“选择预计发布时间”>// 属性picker-option 在data中定义data( ) { return { pickerOptions: {
2021-04-21 16:19:04 466
原创 2021-03-30
element-ui使用气泡弹出效果使里面的弹出框内容动态实现----利用插槽<el-popover></el-popover><el-popover placement="top-start" title="上级主管" width="200" trigger="hover"> <span v-for="super...
2021-03-30 14:25:21 123
原创 设置轮播图后报错:react-dom.development.js:6202 Unable to preventDefault inside passive event listener invoc
阻止默认事件 解决方案:把默认事件注释解决方案 去掉 React.StrictMode@3安装移动端rem自适应的时候出问题报错ValidationError: Invalid options object. postcss Loader has been initialized using an opti ons object卸载less-loader,安装less-loader@2.1.1yarn remove less-loade...
2020-11-22 17:40:36 4001 1
原创 配置react移动端单位自适应之后 报错ValidationError: Invalid options object. PostCSS Loader has been initialized usi
Uncaught Error: Module build failed (from ./node_modules/postcss-loader/dist/cjs.js):ValidationError: Invalid options object. PostCSS Loader has been initialized using an options object that does not match the API schema.- options has an unknown proper..
2020-11-22 17:35:15 6062 2
原创 React 中事件的使用
React 中事件的使用 事件定义 1. 匿名函数的方式定义事件 2. 类函数的方式定义 this 指向会有问题 如何修正 a. render 函数通过 bind 进行修正 this.handleClick.bind(this)<button onClick={this.handleClick.bind(this)}>添加todos</button> b. 在构造函数中进行修正 constructor(props) {...
2020-11-10 20:16:39 175
原创 改变this指向
##this指向问题三种改变this指向的方法bind **语法:function.bind(thisArg[, arg1[, arg2[, ...]]])bind返回的是一个函数,不能立即执行,后面要加一个()才能执行 **demo.bind({name:"bind",},123)不能得到结果demo.bind({name:"bind",},123)()才能得到结果 bindcall **后面跟着参数 ,会立即执行语法:function.ca...
2020-11-10 20:13:03 92
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人