
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
github.com/DannyFeliz/vue-email-dropdown
A Vue component for autocomplete email domains
@
.Prop | Type | Required | Default | Description |
---|---|---|---|---|
domains | Array | True | - | All domains that should be used to make a domain suggestions. |
defaultDomains | Array | False | [] | Default domains that should be displayed once `@` is typed. |
initialValue | String | False | "" | Initial value for the email field. |
maxSuggestions | Number | False | 4 | How many domain suggestions should displayed. |
closeOnClickOutside | Boolean | False | true | Hide the suggestion list if you click outside the list. |
inputClasses | String|Array|Object | False | "" | Classes that will be apply to the email field. |
clearable | Boolean | False | False | Show button to clean the email field. |
npm install vue-email-dropdown --save
# or with yarn
yarn add vue-email-dropdown
<template>
<EmailDropdown :domains="domains" :defaultDomains="defaultDomains" />
</template>
<script>
// Import package
import EmailDropdown from "vue-email-dropdown";
// Import styles
import "vue-email-dropdown/dist/vue-email-dropdown.css";
export default {
components: {
EmailDropdown
},
data() {
return {
domains: [
"yourcompany.com",
"google.com",
"gmx.de",
"googlemail.com",
"hotmail.fr",
"hotmail.it",
"web.de",
"yahoo.co.in",
"yahoo.com",
"yahoo.in"
],
defaultDomains: ["gmail.com", "hotmail.com", "msn.com", "outlook.com", "yahoo.com"]
};
}
};
</script>
npm install
npm run serve
npm run build
npm run test
npm run lint
git checkout -b feature/fooBar
)git commit -am 'Add some fooBar'
)git push origin feature/fooBar
)FAQs
Unknown package
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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.