mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
types: fix ts errors in demo files (#10275)
* types: fix ts errors in demo files * docs: upd
This commit is contained in:
parent
7630bb2c03
commit
b5d0fec611
@ -262,7 +262,7 @@ export default {
|
||||
&__subtitle {
|
||||
display: inline-block;
|
||||
color: #999;
|
||||
margin-left: 8px;
|
||||
margin-left: 4px;
|
||||
vertical-align: -4px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
@ -37,7 +37,10 @@ import { Toast } from 'vant';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const editingContact = ref({});
|
||||
const editingContact = ref({
|
||||
tel: '',
|
||||
name: '',
|
||||
});
|
||||
const onSave = (contactInfo) => Toast('Save');
|
||||
const onDelete = (contactInfo) => Toast('Delete');
|
||||
return {
|
||||
|
@ -37,7 +37,10 @@ import { Toast } from 'vant';
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
const editingContact = ref({});
|
||||
const editingContact = ref({
|
||||
tel: '',
|
||||
name: '',
|
||||
});
|
||||
const onSave = (contactInfo) => Toast('保存');
|
||||
const onDelete = (contactInfo) => Toast('删除');
|
||||
return {
|
||||
|
@ -1,6 +1,6 @@
|
||||
<script setup lang="ts">
|
||||
import VanContactEdit from '..';
|
||||
import { ref } from 'vue';
|
||||
import VanContactEdit, { type ContactEditInfo } from '..';
|
||||
import { useTranslate } from '../../../docs/site/use-translate';
|
||||
import { Toast } from '../../toast';
|
||||
|
||||
@ -13,7 +13,10 @@ const t = useTranslate({
|
||||
},
|
||||
});
|
||||
|
||||
const editingContact = ref({});
|
||||
const editingContact = ref<ContactEditInfo>({
|
||||
tel: '',
|
||||
name: '',
|
||||
});
|
||||
|
||||
const onSave = () => Toast(t('save'));
|
||||
const onDelete = () => Toast(t('delete'));
|
||||
|
@ -1,11 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
import VanCountDown from '..';
|
||||
import VanGrid from '../../grid';
|
||||
import VanGridItem from '../../grid-item';
|
||||
import VanCountDown, { type CountDownInstance } from '..';
|
||||
import { ref } from 'vue';
|
||||
import { useTranslate } from '../../../docs/site/use-translate';
|
||||
import { Toast } from '../../toast';
|
||||
import type { CountDownInstance } from '../CountDown';
|
||||
|
||||
const t = useTranslate({
|
||||
'zh-CN': {
|
||||
|
@ -1,7 +1,10 @@
|
||||
import { KeepAlive, nextTick } from 'vue';
|
||||
import { CountDown } from '..';
|
||||
import { nextTick, KeepAlive } from 'vue';
|
||||
import {
|
||||
CountDown,
|
||||
type CountDownInstance,
|
||||
type CountDownCurrentTime,
|
||||
} from '..';
|
||||
import { mount, later } from '../../../test';
|
||||
import type { CountDownCurrentTime, CountDownInstance } from '../CountDown';
|
||||
|
||||
test('should emit finish event when finished', async () => {
|
||||
const wrapper = mount(CountDown, {
|
||||
|
@ -1,10 +1,9 @@
|
||||
<script setup lang="ts">
|
||||
import VanCell from '../../cell';
|
||||
import VanIcon from '../../icon';
|
||||
import { Notify } from '..';
|
||||
import { ref } from 'vue';
|
||||
import { Notify, type NotifyType } from '..';
|
||||
import { useTranslate } from '../../../docs/site/use-translate';
|
||||
import { NotifyType } from '../Notify';
|
||||
|
||||
const VanNotify = Notify.Component;
|
||||
|
||||
|
@ -30,14 +30,14 @@ const t = useTranslate({
|
||||
});
|
||||
|
||||
const value1 = ref(50);
|
||||
const value2 = ref([20, 60]);
|
||||
const value2 = ref<[number, number]>([20, 60]);
|
||||
const value3 = ref(0);
|
||||
const value4 = ref(50);
|
||||
const value5 = ref(50);
|
||||
const value6 = ref(50);
|
||||
const value7 = ref(50);
|
||||
const value8 = ref(50);
|
||||
const value9 = ref([20, 60]);
|
||||
const value9 = ref<[number, number]>([20, 60]);
|
||||
|
||||
const onChange = (value: string) => Toast(t('text') + value);
|
||||
</script>
|
||||
|
@ -42,7 +42,7 @@ const disabledInput = ref(1);
|
||||
const beforeChange = () => {
|
||||
Toast.loading({ forbidClick: true });
|
||||
|
||||
return new Promise((resolve) => {
|
||||
return new Promise<boolean>((resolve) => {
|
||||
setTimeout(() => {
|
||||
Toast.clear();
|
||||
resolve(true);
|
||||
|
@ -17,7 +17,7 @@ const t = useTranslate({
|
||||
},
|
||||
});
|
||||
|
||||
const container = ref(null);
|
||||
const container = ref<Element>();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
@ -38,10 +38,12 @@ const beforeClose = ({ position }: { position: string }) => {
|
||||
case 'outside':
|
||||
return true;
|
||||
case 'right':
|
||||
return new Promise((resolve) => {
|
||||
return new Promise<boolean>((resolve) => {
|
||||
Dialog.confirm({
|
||||
title: t('confirm'),
|
||||
}).then(resolve);
|
||||
}).then(() => {
|
||||
resolve(true);
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
@ -64,7 +64,7 @@ const beforeChange = (name: number) => {
|
||||
if (name === 1) {
|
||||
return false;
|
||||
}
|
||||
return new Promise((resolve) => {
|
||||
return new Promise<boolean>((resolve) => {
|
||||
resolve(name !== 3);
|
||||
});
|
||||
};
|
||||
|
@ -99,7 +99,7 @@ test('set input name', (done) => {
|
||||
detail: { name: string | number; index: number }
|
||||
) => {
|
||||
expect(detail.name).toEqual('uploader');
|
||||
return file;
|
||||
return true;
|
||||
},
|
||||
afterRead: (
|
||||
readFile: UploaderFileListItem | UploaderFileListItem[],
|
||||
|
@ -26,7 +26,7 @@ export type UploaderBeforeRead = (
|
||||
name: string | number;
|
||||
index: number;
|
||||
}
|
||||
) => boolean | Promise<File | File[] | undefined>;
|
||||
) => boolean | undefined | Promise<File | File[] | undefined>;
|
||||
|
||||
export type UploaderAfterRead = (
|
||||
items: UploaderFileListItem | UploaderFileListItem[],
|
||||
|
Loading…
x
Reference in New Issue
Block a user