7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
"use strict";
|
|
const common_vendor = require("../vendor.js");
|
|
function goto(url) {
|
|
common_vendor.index.navigateTo({ url, fail: () => common_vendor.index.switchTab({ url }) });
|
|
}
|
|
exports.goto = goto;
|