Case 01
List all countries
Baseline scenario without max and without filter, shared across the three demos.
Vue demo
Demo page for the Vue component.
Live demo
Case 01
Baseline scenario without max and without filter, shared across the three demos.
Case 02
Validates the max prop using the same shared reference value across all demos.
Case 03
Uses the same shared filter array in the three demos.
['es', 'br', 'ar', 'uy', 'us', 'gb']Case 04
Validates the combined use of filter and max with the same values across all frameworks.
Captured change events
No events captured yet.
Local run
Run the Vue demo locally from the workspace.
pnpm install
pnpm dev:vue Reference snippet
This is the example used on the demo page.
<CountriesFlags
v-model="selectedCode"
:filter="['es', 'br', 'ar', 'uy', 'us', 'gb']"
:max="4"
@change="handleCountryChange"
/>