mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(DatetimePicker): fix docs code (#11750)
This commit is contained in:
parent
c88f457e84
commit
f56634c4a5
@ -63,7 +63,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
|
|
||||||
const formatter = (type, val) => {
|
const formatter = (type, val) => {
|
||||||
if (type === 'year') {
|
if (type === 'year') {
|
||||||
@ -103,7 +103,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
|
|
||||||
const formatter = (type, val) => {
|
const formatter = (type, val) => {
|
||||||
if (type === 'month') {
|
if (type === 'month') {
|
||||||
@ -165,7 +165,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
return {
|
return {
|
||||||
minDate: new Date(2020, 0, 1),
|
minDate: new Date(2020, 0, 1),
|
||||||
maxDate: new Date(2025, 10, 1),
|
maxDate: new Date(2025, 10, 1),
|
||||||
@ -192,7 +192,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
return {
|
return {
|
||||||
minDate: new Date(2020, 0, 1),
|
minDate: new Date(2020, 0, 1),
|
||||||
maxDate: new Date(2025, 10, 1),
|
maxDate: new Date(2025, 10, 1),
|
||||||
@ -252,7 +252,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
|
|
||||||
const formatter = (type, val) => {
|
const formatter = (type, val) => {
|
||||||
if (type === 'year') {
|
if (type === 'year') {
|
||||||
|
@ -67,7 +67,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
|
|
||||||
const formatter = (type, val) => {
|
const formatter = (type, val) => {
|
||||||
if (type === 'year') {
|
if (type === 'year') {
|
||||||
@ -109,7 +109,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
|
|
||||||
const formatter = (type, val) => {
|
const formatter = (type, val) => {
|
||||||
if (type === 'month') {
|
if (type === 'month') {
|
||||||
@ -175,7 +175,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
return {
|
return {
|
||||||
minDate: new Date(2020, 0, 1),
|
minDate: new Date(2020, 0, 1),
|
||||||
maxDate: new Date(2025, 10, 1),
|
maxDate: new Date(2025, 10, 1),
|
||||||
@ -204,7 +204,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
return {
|
return {
|
||||||
minDate: new Date(2020, 0, 1),
|
minDate: new Date(2020, 0, 1),
|
||||||
maxDate: new Date(2025, 10, 1),
|
maxDate: new Date(2025, 10, 1),
|
||||||
@ -261,7 +261,7 @@ import { ref } from 'vue';
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
setup() {
|
setup() {
|
||||||
const currentDate = ref(new Date());
|
const currentDate = ref(new Date(2020, 0, 1));
|
||||||
|
|
||||||
const formatter = (type, val) => {
|
const formatter = (type, val) => {
|
||||||
if (type === 'year') {
|
if (type === 'year') {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user