Package Exports
- vue-places
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue-places) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue-places
Places component is based on places.js for Vue 2.x.
Installation
# yarn
$ yarn add vue-places
# npm
$ npm install vue-places --saveExample
<template>
<places placeholder="Where are we going ?" :options="{ countries: 'US' }"></places>
</template>
<script>
import Places from 'vue-places'
export default {
components: {
Places
}
}
</script>