Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
vue-loading-overlay
Advanced tools
Vue.js v2.x component for full screen loading indicator
:mega: Now published to npm
# npm
npm install vue-loading-overlay --save
# Yarn
yarn add vue-loading-overlay
<template>
<div>
<loading :active.sync="isLoading" :can-cancel="true" :onCancel="whenCancelled"></loading>
<button @click.prevent="fetchData">fetch Data</button>
</div>
</template>
<script>
// Import component
import Loading from 'vue-loading-overlay';
// Import stylesheet
import 'vue-loading-overlay/dist/vue-loading.min.css';
export default {
data() {
return {
isLoading: false,
}
},
components: {
Loading
},
methods: {
fetchData() {
this.isLoading = true;
// AJAX example with axios
axios.post('/api').then((response)=>{
this.isLoading = false
})
},
whenCancelled() {
console.log("User cancelled the loader.")
}
}
}
</script>
<template>
<form @submit.prevent="submit">
<!-- form inputs -->
</form>
</template>
<script>
import Vue from 'vue';
// Import component
import Loading from 'vue-loading-overlay';
// Import stylesheet
import 'vue-loading-overlay/dist/vue-loading.min.css';
// Init plugin
Vue.use(Loading);
export default {
methods: {
submit() {
let loader = this.$loading.show();
axios.post('/api').then((response)=>{
loader.hide()
})
}
}
}
</script>
The component accepts these props:
Attribute | Type | Default | Description |
---|---|---|---|
canCancel | Boolean | false | Allow user to cancel |
onCancel | Function | ()=>{} | Do something upon cancel |
<!-- Vue js -->
<script src="https://unpkg.com/vue@2.5/dist/vue.min.js"></script>
<!-- Lastly add this package -->
<script src="https://unpkg.com/vue-loading-overlay@2"></script>
<link href="https://unpkg.com/vue-loading-overlay@latest/dist/vue-loading.min.css" rel="stylesheet">
<!-- Init the plugin -->
<script>
Vue.use(VueLoading)
</script>
yarn install
yarn start
http://localhost:8000
in your default web browserMIT License
FAQs
Vue.js component for full screen loading indicator.
The npm package vue-loading-overlay receives a total of 42,373 weekly downloads. As such, vue-loading-overlay popularity was classified as popular.
We found that vue-loading-overlay 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.