@tslsmart/magic-applet
Version:
特斯联移动端统一接口,抹平h5和wgt的差异
13 lines (11 loc) • 334 B
text/typescript
import { action } from './action'
import { DEFAULT_TARGET } from '../constant'
import type { NavigateParams } from '../types/index'
export const navigateTo = (config: NavigateParams) => {
const { appid, targetUrl } = config
return action({
actionType: 'navigate',
appid,
targetUrl: targetUrl || DEFAULT_TARGET
})
}