项目作者: Gomah

项目描述 :
Places component is based on places.js for Vue 2.x. Turn any into an address autocomplete.
高级语言: JavaScript
项目地址: git://github.com/Gomah/vue-places.git
创建时间: 2017-01-14T14:09:24Z
项目社区:https://github.com/Gomah/vue-places

开源协议:MIT License

下载


vue-places

Places component is based on places.js for Vue 2.x.

Turn any into an address autocomplete

circle-ci
npm version
Dependencies
npm downloads
code style: prettier
License: MIT


Installation

  1. # yarn
  2. $ yarn add vue-places
  3. # npm
  4. $ npm install vue-places --save

Example

  1. <template>
  2. <places
  3. v-model="form.country.label"
  4. placeholder="Where are we going ?"
  5. @change="val => { form.country.data = val }"
  6. :options="options">
  7. </places>
  8. </template>
  9. <script>
  10. import Places from 'vue-places';
  11. export default {
  12. data() {
  13. return {
  14. options: {
  15. appId: <YOUR_PLACES_APP_ID>,
  16. apiKey: <YOUR_PLACES_API_KEY>,
  17. countries: ['US'],
  18. },
  19. form: {
  20. country: {
  21. label: null,
  22. data: {},
  23. },
  24. },
  25. };
  26. },
  27. components: {
  28. Places,
  29. },
  30. }
  31. </script>

Algolia Places Documentation