ant-design-vue/components/time-picker/demo/suffix.vue

41 lines
756 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<docs>
---
order: 7
title:
zh-CN: 后缀图标
en-US: Suffix
---
## zh-CN
点击 TimePicker然后可以在浮层中选择或者输入某一时间
## en-US
Click `TimePicker`, and then we could select or input a time in panel.
</docs>
<template>
<a-time-picker v-model:value="value" :default-value="dayjs('00:00:00', 'HH:mm:ss')">
<template #suffixIcon><smile-outlined /></template>
</a-time-picker>
</template>
<script lang="ts">
import dayjs, { Dayjs } from 'dayjs';
import { SmileOutlined } from '@ant-design/icons-vue';
import { defineComponent, ref } from 'vue';
export default defineComponent({
components: {
SmileOutlined,
},
setup() {
return {
dayjs,
value: ref<Dayjs>(),
};
},
});
</script>