
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.
vuetify-select-code
Advanced tools
If you use Vuejs with Vuetify and need a v-select to select by entering a code. Maybe it can help you.
$ npm install vuetify-select-code --save
Register component:
1- Create a src/plugins/vuetify-select-code.js file with:
import Vue from "vue";
import VuetifySelectCode from "vuetify-select-code";
Vue.use(VuetifySelectCode);
export default VuetifySelectCode;
2- Add to src/mains.js file:
import "./plugins/vuetify-select-code.js";
Parent component:
<template>
<div>
<vuetify-select-code v-model="value" v-bind:label1="label1" v-bind:label2="label2" v-bind:items="items" v-bind:options="options"/>
Parent v-model: {{ value }}
</div>
</template>
<script>
export default {
components: {
VuetifySelectCode
},
data: () => ({
value: "2",
label1: "Code",
label2: "Description",
items: [
{ text: "1 - Dessert", value: "1" },
{ text: "2 - Calories", value: "2" },
{ text: "3 - Fat", value: "3" },
{ text: "4 - Protein", value: "4" },
{ text: "140 - Iron", value: "140" }
],
options: {
outlined: true,
clearable: true
},
})
};
</script>
FAQs
Select code component to vuetify.
The npm package vuetify-select-code receives a total of 1 weekly downloads. As such, vuetify-select-code popularity was classified as not popular.
We found that vuetify-select-code 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
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.