@x-edu/service
v0.0.13
Published
x学习服务
Maintainers
Keywords
Readme
@x-edu/service
x 学习相关 API
安装
npm i @x-edu/service示例
import Service from '@x-edu/service'
export let service
export function initService({
uc,
sdpAppId
}) {
service = new Service({
uc,
sdpAppId
})
return service
}const uc = new UC()
const sdpAppI = 'xxxx'
initService({ uc, sdpAppId })import { service as serviceInstance } from '@/service'
serviceInstance.service.xxx()