open-location.js 251 字节
Newer Older
1 2
import * as webview from './open-location-webview'
import * as weex from './open-location-weex'
fxy060608's avatar
fxy060608 已提交
3

4
export function openLocation (...array) {
Q
qiang 已提交
5
  const api = __uniConfig.nvueCompiler !== 'weex' ? weex : webview
6 7
  return api.openLocation(...array)
}