@tencentcloud/ai-desk-customer-uniapp
Version:
uni-app Vue2/Vue3 UIKit for AI Desk
9 lines (8 loc) • 309 B
text/typescript
import { TUIStore, StoreName } from '../@aidesk/uikit-engine';
export function enableSampleTaskStatus(taskKey: string) {
const tasks = TUIStore.getData(StoreName.APP, 'tasks');
if (taskKey in tasks && !tasks[taskKey]) {
tasks[taskKey] = true;
TUIStore.update(StoreName.APP, 'tasks', tasks);
}
}