primevue-mirror/doc/calendar/IconDoc.vue

49 lines
1.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>An additional icon is displayed next to the input field when <i>showIcon</i> is present.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<Calendar v-model="date" showIcon />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
date: null,
code: {
2023-08-16 13:58:31 +00:00
basic: `<Calendar v-model="date" showIcon />`,
options: `<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Calendar v-model="date" showIcon />
</div>
</template>
<script>
export default {
data() {
return {
date: null
};
}
};
<\/script>`,
2023-08-16 13:58:31 +00:00
composition: `<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Calendar v-model="date" showIcon />
</div>
</template>
<script setup>
import { ref } from "vue";
const date = ref();
<\/script>`
}
};
}
};
</script>