
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.
AileUI 是一个基于 Vue 2 和 Element UI 进行二次开发的UI库,包含以下常用组件:
每种组件均在原有 ElementUI 的基础上进行了功能增强,例如 Form 和 Table 组件实现了配置化开发,可通过书写JSX语法传入 column 属性完成配置,而 Select 和 Autocomplete 组件则实现了无限滚动加载的功能,更多功能可点击上方列表阅读相应 README.md 文档
点击访问:AileUI
通过 npm 或者 yarn 安装项目
npm i aile-ui element-ui
# 或者
yarn add aile-ui element-ui
引用组件,根据需要可全局引入或者局部引入
注意:由于 AileUI 是基于 ElementUI 进行的二次开发,因此需全局引入 ElementUI 组件后方可正常使用
main.js 全局引入
import Vue from 'vue'
import Element from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
// 方式1:引入全部组件包并设置参数,key的名称是组件类别
import AileUI from 'aile-ui'
Vue.use(AileUI, {
autocomplete: {
clearable: true,
config: {
trim: true
}
}
})
// 方式2:引入单独组件并设置参数
import AileAutocomplete from 'aile-ui/lib/autocomplete'
Vue.use(AileAutocomplete, {
clearable: true,
config: {
trim: true
}
});
Demo.vue 局部引入
import AileAutocomplete from 'aile-ui/lib/autocomplete'
export default {
components: {
AileAutocomplete
}
}
FAQs
Advance Vue 2.x Components based on ElementUI
We found that aile-ui 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.