mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
Showcase updates
This commit is contained in:
parent
fcf8599cfa
commit
b2ec54e364
134 changed files with 6160 additions and 1238 deletions
95
doc/datepicker/TimeDoc.vue
Normal file
95
doc/datepicker/TimeDoc.vue
Normal file
|
@ -0,0 +1,95 @@
|
|||
<template>
|
||||
<DocSectionText v-bind="$attrs">
|
||||
<p>A time picker is displayed when <i>showTime</i> is enabled where 12/24 hour format is configured with <i>hourFormat</i> property. In case, only time needs to be selected, add <i>timeOnly</i> to hide the date section.</p>
|
||||
</DocSectionText>
|
||||
<div class="card flex flex-wrap gap-3 p-fluid">
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-12h" class="font-bold block mb-2"> 12h Format </label>
|
||||
<DatePicker id="datepicker-12h" v-model="datetime12h" showTime hourFormat="12" />
|
||||
</div>
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-24h" class="font-bold block mb-2"> 24h Format </label>
|
||||
<DatePicker id="datepicker-24h" v-model="datetime24h" showTime hourFormat="24" />
|
||||
</div>
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-timeonly" class="font-bold block mb-2"> Time Only </label>
|
||||
<DatePicker id="datepicker-timeonly" v-model="time" timeOnly />
|
||||
</div>
|
||||
</div>
|
||||
<DocSectionCode :code="code" />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
datetime12h: null,
|
||||
datetime24h: null,
|
||||
time: null,
|
||||
code: {
|
||||
basic: `
|
||||
<DatePicker id="datepicker-12h" v-model="datetime12h" showTime hourFormat="12" />
|
||||
<DatePicker id="datepicker-24h" v-model="datetime24h" showTime hourFormat="24" />
|
||||
<DatePicker id="datepicker-timeonly" v-model="time" timeOnly />
|
||||
`,
|
||||
options: `
|
||||
<template>
|
||||
<div class="card flex flex-wrap gap-3 p-fluid">
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-12h" class="font-bold block mb-2"> 12h Format </label>
|
||||
<DatePicker id="datepicker-12h" v-model="datetime12h" showTime hourFormat="12" />
|
||||
</div>
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-24h" class="font-bold block mb-2"> 24h Format </label>
|
||||
<DatePicker id="datepicker-24h" v-model="datetime24h" showTime hourFormat="24" />
|
||||
</div>
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-timeonly" class="font-bold block mb-2"> Time Only </label>
|
||||
<DatePicker id="datepicker-timeonly" v-model="time" timeOnly />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
datetime12h: null,
|
||||
datetime24h: null,
|
||||
time: null
|
||||
};
|
||||
}
|
||||
};
|
||||
<\/script>
|
||||
`,
|
||||
composition: `
|
||||
<template>
|
||||
<div class="card flex flex-wrap gap-3 p-fluid">
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-12h" class="font-bold block mb-2"> 12h Format </label>
|
||||
<DatePicker id="datepicker-12h" v-model="datetime12h" showTime hourFormat="12" />
|
||||
</div>
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-24h" class="font-bold block mb-2"> 24h Format </label>
|
||||
<DatePicker id="datepicker-24h" v-model="datetime24h" showTime hourFormat="24" />
|
||||
</div>
|
||||
<div class="flex-auto">
|
||||
<label for="datepicker-timeonly" class="font-bold block mb-2"> Time Only </label>
|
||||
<DatePicker id="datepicker-timeonly" v-model="time" timeOnly />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from "vue";
|
||||
|
||||
const datetime12h = ref();
|
||||
const datetime24h = ref();
|
||||
const time = ref();
|
||||
<\/script>
|
||||
`
|
||||
}
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue