
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
<al-form :model="form" :rules="rules" ref="form">
<al-form-item prop="name">
<al-input :value.sync="form.name" />
</al-form-item>
<div class="psd">
<al-form-item prop="password">
<al-input :value.sync="form.password" type="password" />
</al-form-item>
</div>
<button @click="beforeSubmit">确定</button>
</al-form>
// validator.js里面定义了一些校验规则
import { isRequired, limitLength } from './validator';
export default {
data() {
return {
// model传递给al-form使用
form: {
name: '',
password: '',
},
rules: {// 表单里面各字段的校验规则
name: [isRequired, this.checkName],
// 可以是封装好的方法,也可以是自定义的异步校验规则
// 注意返回结果的结构
/*
{
type: 'checkName', // type为校验的名称
msg: '名字重复',
// msg为提示信息,如果校验通过,msg为null,
// 后续也是根据msg的值来判断是否校验通过
}
*/
password: [limitLength(6, 12)],
},
};
},
methods: {
// 模拟 异步校验
async checkName(value) {
if (!value) return;
return await new Promise(resolve => {
setTimeout(() => {
console.log(value, 'value');
resolve({
type: 'checkName',
msg: '名字重复',
});
}, 2000);
});
},
beforeSubmit() {
// 如何校验?
this.$refs.form.validate(validate => {
console.log(validate, '校验的结果'); // 成功还是失败
});
},
},
}
FAQs
```vue <al-input :value.sync=
We found that al-form demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.