1.0.2 • Published 3 years ago

@nishanth2059/vuejs-plugin-geolocation-latlog v1.0.2

Weekly downloads
89
License
UNLICENSED
Repository
github
Last release
3 years ago

vuejs-plugin-geolocation-latlog

Geo location fetching plugin for your Vue application

Getting Started

Install

npm install --save vuejs-plugin-geolocation-latlog

How to use

// use get geolocation function
import { getGeoLocation } from 'vuejs-plugin-geolocation-latlog'

getGeoLocation.then(
    (value) => {
        alert(value);
    },
    (error) => {
        alert(error);
    }
);