示例交互

上下文菜单

在节点上右键单击时,可以使用 onNodeContextMenu 事件来显示自定义菜单。本示例展示了一个简单的菜单,其中包含用于复制或删除所单击节点的按钮。

<script lang="ts">
const data: string = "world";
</script>

<h1>Hello {data}</h1>

<style>
h1 {
  font-size: 1.5rem;
}
</style>
只读