
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.
ev-vue-framework
Advanced tools
基于Vue 3 + Vite + Ant Design Vue的企业级前端框架
npm install ev-vue-framework
import { createApp } from 'vue';
import EvFramework from 'ev-vue-framework';
import 'ev-vue-framework/lib/ev-vue-framework.css';
const app = createApp(App);
app.use(EvFramework);
app.mount('#app');
import { createApp } from 'vue';
import { EvButton, EvInputNumber } from 'ev-vue-framework';
import 'ev-vue-framework/lib/ev-vue-framework.css';
const app = createApp(App);
app.component('ev-button', EvButton);
app.component('ev-input-number', EvInputNumber);
app.mount('#app');
<template>
<div>
<ev-button type="primary">Primary Button</ev-button>
<ev-input-number v-model:value="value" :min="1" :max="10"></ev-input-number>
</div>
</template>
<script>
import { ref } from 'vue';
export default {
setup() {
const value = ref(5);
return {
value
}
}
}
</script>
EvButton - 按钮组件EvInputNumber - 数字输入框组件EvBreadcrumb - 面包屑组件EvCheckboxGroup - 复选框组组件EvDescriptions - 描述列表组件EvDict - 字典组件EvDrawer - 抽屉组件EvExport - 导出组件EvFormBase - 基础表单组件EvFormHeader - 表单头部组件EvImport - 导入组件EvModal - 模态框组件EvRadio - 单选框组件EvSearchForm - 搜索表单组件EvSelectVehicle - 车辆选择组件EvSelect - 选择器组件EvTreeSelect - 树选择组件EvTree - 树组件EvUploadImg - 图片上传组件EvUpload - 文件上传组件EvVideo - 视频组件框架还支持动态引入组件的功能:
import { getComponent, getComponentAsync } from 'ev-vue-framework';
// 同步获取组件
const EvButton = getComponent('ev-button');
// 异步获取组件
getComponentAsync('ev-button').then(component => {
// 使用组件
});
ev-vue-framework/lib/ev-vue-framework.cssFAQs
基于Vue 3 + Vite + Ant Design Vue的企业级前端框架
We found that ev-vue-framework demonstrated a healthy version release cadence and project activity because the last version was released less than 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.