
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
left-tab-menu
Advanced tools
Left tab menu component by Vue. Must specify the height of the outer container where the component is located.
# install
npm install --save left-tab-menu

##use
<template>
<div id="app">
<left-tab-menu :menuList="menulist"></left-tab-menu>
</div>
</template>
<script>
import leftTabMenu from './myPlugin/leftTabMenu'; // 引入
import menuList from './menuList'; // 引入
export default {
name: 'app',
components: {
leftTabMenu
},
data () {
return {
menulist: menuList
}
}
}
</script>
<style lang="scss">
#app {
font-family: 'Avenir', Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
display: flex;
flex-direction: column;
position: absolute;
right: 0;
left: 0;
height: 100%;
}
</style>
FAQs
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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.