
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
@lob/vue-address-autocomplete
Advanced tools
[](https://badge.fury.io/js/@lob%2Fvue-address-autocomplete)
This is a very lightweight component that uses the Lob Autocomplete API in order to simplify the process of adding in a search autocomplete bar. Check out the Autocomplete API for more configuration options on Postman or Lob Documentation.
As always if this front end component doesn't suit your bootstrapped needs, feel free to check out the aformentioned links above to have more control over the look and feel of your address autocomplete and verification needs :)
npm install --save @lob/vue-address-autocomplete
Make sure to include our component styles in your js entry point or at the component level:
# inside main.js or component file
import '@lob/vue-address-autocomplete/dist/styles.css';
<template>
<div>
<AddressAutocomplete apiKey="YOUR_API_KEY_HERE" :addresses="addresses" @selectItem="selectItem" @newSuggestions="addNewSuggestions" />
<div class="column column-40">
<pre><code>{{selection}}</code></pre>
</div>
</div>
</template>
<script>
import AddressAutocomplete from '@lob/vue-address-autocomplete'
export default {
components: {
AddressAutocomplete
},
data() {
return {
addresses: [],
selection: ''
}
},
methods: {
selectItem(item) {
this.selection = item;
},
addNewSuggestions(suggestedAddresses) {
this.addresses = suggestedAddresses;
}
}
};
</script>
Run
npm run build
npm publish
FAQs
[](https://badge.fury.io/js/@lob%2Fvue-address-autocomplete)
The npm package @lob/vue-address-autocomplete receives a total of 105 weekly downloads. As such, @lob/vue-address-autocomplete popularity was classified as not popular.
We found that @lob/vue-address-autocomplete 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
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.