
Research
/Security News
11 Malicious NuGet Tools Pose as Game Cheats to Drop a Windows Host-Surveillance Payload
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.
vue-qeelyn-components
Advanced tools
所有qeelyn vue web项目 的vue处理公共部分 iview 已升级到4.x版本
npm install vue-qeelyn-components --save
1. iview-components (iview公共组件库)
2. util (基础工具、excel处理)
3. vuex (vuex 公共部分的库)
说明:目前大部分都还是根据ivieiw上的文档继续执行不会改变iview源码,而是对源码对应的控件进行替换成本项目的控件进行设置。但api会增加不会改变原来iview的文档
使用位置 -> admin.js
import doInputNumber from 'vue-qeelyn-components/iview-components/doInputNumber'
// 在Vue.use(iView)下方增加引入,InputNumber对应iview的控件命名这样项目内会自己替换掉
Vue.component('InputNumber', doInputNumber);
目前替换的控件
1.InputNumber //主要处理控件输入的值问题
2.Table //主要添加了自定义表头数据展示的功能
在 *.vue中使用
import Header from "vue-qeelyn-components/iview-components/header";
export default {
components: {
LayoutHeader: Header //担心冲突就这样写 不担心直接放入Header
},
...
}
util 基础工具
import Util from "vue-qeelyn-components/util";
ctx.cookies.set('appkey', 'test_key');
在 store.js 中使用
import qeelynModules from "vue-qeelyn-components/vuex";
import othenModules from "..."; //外部项目vuex
let modules = Object.assign(qeelynModules,othenModules);
export default new Vuex.Store({
...
modules,
...
})
在main.js中,store设置uid与orgId
store.dispatch('qeelynLocal/setUid', window.eggUid);
store.dispatch('qeelynLocal/setOrgId',window.eggOrgId);
store.dispatch('qeelynLocal/setLoginOrgId',window.eggLoginOrgId);
<script>
window.eggOrgId = '{{orgId}}'
window.eggLoginOrgId = '{{loginOrgId}}'
window.eggUid = '{{uid}}'
</script>
FAQs
所有qeelyn vue web项目 的vue处理公共部分 iview 已升级到4.x版本
The npm package vue-qeelyn-components receives a total of 69 weekly downloads. As such, vue-qeelyn-components popularity was classified as not popular.
We found that vue-qeelyn-components 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.

Research
/Security News
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.

Research
/Security News
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.