tagGroup(标签群组)
透过 eagle.tagGroup API 可以方便存取当前应用中的标签群组。
// 取得所有标签群组
const tagGroups = (await eagle.tagGroup.get());方法
get()
const tagGroups = (await eagle.tagGroup.get());create(options)
await eagle.tagGroup.create({
name: "new group",
color: "red",
tags: ["tag1", "tag2"],
description: "群组描述" // Eagle 4.0 build18+
});save()
remove()
addTags(options)
removeTags(options)
最后更新于