如何更改光标?

How to change cursor?

angular-ui-tree 中,我注意到项目具有拖动或移动光标,这在我们需要拖动的项目时非常有用。

但是我怎样才能将光标设置为普通箭头呢?

使用CSS设置元素上的默认光标:

cursor: default;

https://developer.mozilla.org/en-US/docs/Web/CSS/cursor

添加以下CSS

.angular-ui-tree-handle {
    cursor:default !important;
}