DEV Community

mathavan jeyadev
mathavan jeyadev

Posted on

Effortless Location Selectors for Vue 3 with @data-forge-services/core

Managing nested location fields like Region → Subregion → Country → State → City can be a headache.

That’s why I created @data-forge-services/core — a plug-and-play Vue 3 component library that helps you integrate dynamic location selectors instantly.

🚀 Quick Install


bash
npm install @data-forge-services/core


<StateSelect label="State" country="India" />

<CitySelect label="City" state="Tamil Nadu" />

<script setup>
import { RegionSelect, SubregionSelect, CountrySelect, StateSelect, CitySelect} from "@data-forge-services/core";
</script>

Enter fullscreen mode Exit fullscreen mode

Top comments (0)