You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
423 B
12 lines
423 B
import "vue";
|
|
import { i as isString } from "./shared.esm-bundler.js";
|
|
function getCurrentSubNVue() {
|
|
return uni.getSubNVueById(plus.webview.currentWebview().id);
|
|
}
|
|
function requireNativePlugin(name) {
|
|
return weex.requireModule(name);
|
|
}
|
|
function resolveEasycom(component, easycom) {
|
|
return isString(component) ? easycom : component;
|
|
}
|
|
export { requireNativePlugin as a, getCurrentSubNVue as g, resolveEasycom as r };
|
|
|