UNPKG
@tslsmart/magic-applet
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.0
1.0.2
1.0.1
1.0.0
特斯联移动端统一接口,抹平h5和wgt的差异
@tslsmart/magic-applet
/
lib
/
h5
/
navigateTo.js
10 lines
(9 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ action }
from
'./action'
;
export
const
navigateTo
= (
config
) => {
const
{ appid, targetUrl } = config;
return
action
({
actionType
:
'navigate'
, appid,
targetUrl
: targetUrl ||
'/pages/index/index'
}); };