primevue-mirror/doc/dropdown/CheckmarkDoc.vue

76 lines
2.3 KiB
Vue
Raw Normal View History

2024-01-24 11:29:42 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-01-24 12:30:47 +00:00
<p>An alternative way to highlight the selected option is displaying a checkmark instead.</p>
2024-01-24 11:29:42 +00:00
</DocSectionText>
<div class="card flex justify-content-center">
2024-01-24 12:30:47 +00:00
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" checkmark :highlightOnSelect="false" class="w-full md:w-14rem" />
2024-01-24 11:29:42 +00:00
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
selectedCity: null,
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
],
code: {
basic: `
2024-01-24 12:30:47 +00:00
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" checkmark :highlightOnSelect="false" class="w-full md:w-14rem" />
2024-01-24 11:29:42 +00:00
`,
options: `
<template>
<div class="card flex justify-content-center">
2024-01-24 12:30:47 +00:00
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" checkmark :highlightOnSelect="false" class="w-full md:w-14rem" />
2024-01-24 11:29:42 +00:00
</div>
</template>
<script>
export default {
data() {
return {
selectedCity: null,
cities: [
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
]
};
}
};
<\/script>
`,
composition: `
<template>
<div class="card flex justify-content-center">
2024-01-24 12:30:47 +00:00
<Dropdown v-model="selectedCity" :options="cities" optionLabel="name" placeholder="Select a City" checkmark :highlightOnSelect="false" class="w-full md:w-14rem" />
2024-01-24 11:29:42 +00:00
</div>
</template>
<script setup>
import { ref } from "vue";
const selectedCity = ref();
const cities = ref([
{ name: 'New York', code: 'NY' },
{ name: 'Rome', code: 'RM' },
{ name: 'London', code: 'LDN' },
{ name: 'Istanbul', code: 'IST' },
{ name: 'Paris', code: 'PRS' }
]);
<\/script>
`
}
};
}
};
</script>