
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-datetime
Advanced tools
This component works with vuetify. input:
v-model: (milliseconds) 1557802800000
if you need a component to input mask dates, working in milliseconds. Maybe it can help you:
$ npm install vuetify-datetime --save
Register component:
1- Create a src/plugins/vuetify-datetime.js file with the following content:
import Vue from "vue";
import VuetifyDateTime from "vuetify-datetime";
Vue.use(VuetifyDateTime);
export default VuetifyDateTime;
2- Add to src/mains.js file:
import "./plugins/vuetify-datetime.js";
Parent component:
<template>
<div>
<vuetify-datetime v-model="value" v-bind:label="label" v-bind:options="options"/>
v-model parent: {{ value }}
</div>
</template>
<script>
export default {
data: () => ({
value: "1557802800000",
label: "Date",
options: {
tabDateTitle: "Data",
tabTimeTitle: "Hora",
locale: "pt-BR",
format: "DD/MM/YYYY", - Date format only. Do not include the time format here.
icon: "event", - "" to disable.
iconTime: "av_timer", - "" to disable. Clicking on this icon, will open the time window.
titleBarColor: "blue",
backgroundColor: "white",
closeOnDateClick: false, - You can define what happens after clicking the date picker: Close the window or go to the timer picker.
useSeconds: false, - Set true to working with seconds as well.
clearable: true,
outlined: false,
}
})
};
</script>
FAQs
DateTime component to vuetify 2.x
We found that vuetify-datetime 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.