UNPKG

@tencentcloud/chat-uikit-vue

Version:

Build In-App Chat & Audio/Video Call & Live Streaming in minutes with UIKit components for Vue.

9 lines (8 loc) 317 B
import { TUIStore, StoreName } from "@tencentcloud/chat-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); } }