You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
288 B
13 lines
288 B
|
2 years ago
|
# vv-schedule
|
||
|
|
### 用法:
|
||
|
|
```
|
||
|
|
import {addSchedule} from '@/uni_modules/vv-schedule'
|
||
|
|
|
||
|
|
await addSchedule({
|
||
|
|
title: 'vvv',
|
||
|
|
description: 'eee',
|
||
|
|
dtstart: new Date('2021/8/28 5:00').getTime(),
|
||
|
|
dtend: new Date('2021/8/28 6:00').getTime(),
|
||
|
|
})
|
||
|
|
uni.showToast({title: '日程添加成功'})
|
||
|
|
```
|