Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IRCKitComponentContext

Hierarchy

  • IRCKitComponentContext

Index

Methods

  • computed<T>(fn: (() => T)): T
  • 代理 vue 的 computed 方法,以便于业务使用计算属性

    Type Parameters

    • T

    Parameters

    • fn: (() => T)
        • (): T
        • Returns T

    Returns T

  • ref<T>(value?: T): { value?: T }
  • 代理 vue 的 ref 方法,以便于业务使用 ref 做响应式监听

    Type Parameters

    • T = null | string | number | boolean

    Parameters

    • Optional value: T

    Returns { value?: T }

    • Optional value?: T
  • reactive(obj: object): any
  • 代理 vue 的 reactive 方法,以便于在模版中使用响应式数据

    Parameters

    • obj: object

    Returns any

  • getLanguage(): string
  • 获取当前语言

    Returns string

  • getCurrentUserId(): string
  • 获取当前用户 ID

    Returns string