UNPKG

google-maps-vue-library

Version:

This library is use to render google maps in your application. you will have to pass 'latLong' as a input to display google maps in your application. in case you want to add markers of your map neary by locations you will have to pass markers data as per

8 lines (6 loc) 149 B
import { createApp } from "vue"; import App from "./App.vue"; import router from "./router"; createApp(App) .use(router) .mount("#app");