Skip to main content
Version: 3.1

Destination 跳转页面

结构声明

interface Destination {
"concept": "Destination", // 产品概念
"label": string, // 跳转页面标题
"viewNamespace": string, // viewNamespace
"viewName": string, // viewName
"arguments": Array<Argument>, // 实际参数
"target": string, // 目标窗口
"anchor": Anchor, // 锚点参数
}

示例

简单示例

{
"concept": "Destination",
"label": "跳转页面",
"viewNamespace": null,
"viewName": null,
"arguments": [],
"target": "_self",
"anchor": null
}