<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择周
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date"picker="week"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择月
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date"picker="month"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择季度
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date"picker="quarter"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择年份
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date"picker="year"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择日期区间
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择日期时间区间
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"show-time/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择周区间
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"picker="week"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择月区间
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"picker="month"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:选择年区间
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"picker="year"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:日期格式
<scriptsetup>import{ref}from"vue";const date =ref(null)</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"format="YYYY年MM月DD日"/><a-divider/><a-typography-title>{{ date}}</a-typography-title></div></template>
案例:预设日期
<scriptsetup>import{ref}from"vue";import dayjs from"dayjs"const date =ref(null)const presets =[{label:"昨天",value:dayjs().add(-1,'d')},{label:"上周",value:dayjs().add(-7,'d')},{label:"上月",value:dayjs().add(-1,'month')}]</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date":presets="presets"/><a-divider/><a-typography-title>{{ date }}</a-typography-title></div></template>
案例:预设日期区间
<scriptsetup>import{ref}from"vue";import dayjs from"dayjs"const date =ref(null)const presets =[{label:"最近一周",value:[dayjs().add(-7,'d'),dayjs()]},{label:"最近半月",value:[dayjs().add(-15,'d'),dayjs()]},{label:"最近一月",value:[dayjs().add(-1,'month'),dayjs()]}]</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date":presets="presets"/><a-divider/><a-typography-title>{{ date }}</a-typography-title></div></template>
案例:日期选中事件
<scriptsetup>import{ref}from"vue";const date =ref(null)constonChange=(date, dateStr)=>{
console.log(date)
console.log(dateStr)}</script><template><divclass="p-8 bg-indigo-50 text-center"><a-date-pickerv-model:value="date"@change="onChange"/><a-divider/><a-typography-title>{{ date }}</a-typography-title></div></template>
案例:日期区间选中事件
<scriptsetup>import{ref}from"vue";const date =ref(null)constonChange=(dates, dateStrs)=>{
console.log(dates)
console.log(dateStrs)}</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"@change="onChange"/><a-divider/><a-typography-title>{{ date }}</a-typography-title></div></template>
案例:显示中文
<scriptsetup>import{ref}from"vue";import locale from"ant-design-vue/es/date-picker/locale/zh_CN"const date =ref(null)constonChange=(dates, dateStrs)=>{
console.log(dates)
console.log(dateStrs)}</script><template><divclass="p-8 bg-indigo-50 text-center"><a-range-pickerv-model:value="date"@change="onChange":locale="locale"/><a-divider/><a-typography-title>{{ date }}</a-typography-title></div></template>
NTFS For Mac 15是首个支持Mac上读写NTFS外置存储设备解决方案 ,解决mac不能读写外置让您更加简单直观的在Mac机上随意对NTFS文件修改、删除等操作。 安 装 包 获 取 地 址:
Paragon Ntfs For Mac 15版:https://souurl.cn/mqM9C6
软…
2.1、线性表的定义和基本操作
如有侵权请联系删除。
2.1.1、线性表的定义:
线性表是具有相同数据类型的 n (n>0) 个数据元素的有限序列,其中 n 为表长,当 n 0 时线性表是一个空表。若用 L 命名线性表,则其一般表示为&am…
一、映射
1.1 映射的概念
存在一个法则 f ,使得对 X 中每个元素 x ,在 Y 中有唯一确定的元素 y 与之对应(X、Y 非空集)
称 f 为从 X 到 Y 的映射,如图所示 其中 y 称为元素 x(在映射 f 下)的…
第二十六届中国国际高新技术成果交易会
THE 26th CHINA HI-TECH FAIR
BTE第8届国际生物技术大会暨展览会
The 8th International Bio-technology Conference & Expo
2024年11月14-16日 深圳国际会展中心
展位预定:137交易会1016交易会3299 龚经理
组织机构…