I don’t have log from this:
var token = Observable();
token.value = this.Parameter.map(function(args) {
console.log("it is send token"); // i don't have log from this
return args.token;
});
in parent script:
var accessToken = Observable("");
function gotofeed() {
console.log("now go to feed"); //i have log from this
router.push("feed", { token: accessToken.value });
hasProfile.value = true;
}