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>
Top comments (0)