Lumeter
Lumeter
when I tried to use npm command to install babel,I writed 'npm install babel-preset-env --save-dev' at cmd,then there was an error ,'npm WARN [email protected] No description ','npm WARN [email protected] No...
### 这个功能解决了什么问题 1.多选/单选模式都可以支持配置每个选项是否可选; 2.多选模式下可以支持某个选项前是否显示checkbox。 ### 你建议的方案是什么 建议在dataOptions的里加非必填参数的判断,例如是否可选用disable,是否展示checkbox用showCheck: [{ label: '一年级', value: '1', children: [{ label: '1班', value: '11', disable: true, // 置灰文字,表示禁止选择的项 }, { label: '2班', value: '12', showCheck: false,...
请问下本地开发怎么配置proxy呀,就是本地开发的请求转发,类似于vite中的server这种: server: { '/user': { target: ''http://xxxxx changeOrigin: true, secure: false, // 将后台返回的cooke生效域重写 cookieDomainRewrite: { '*': '' } }, }