您可以在主题组件中添加键盘快捷键。在初始化程序中可以这样做:
export default {
name: "setup-shortcuts",
initialize() {
withPluginApi("0.11.4", () => {
KeyboardShortcuts.addShortcut("g 1", null, {
path: "/c/community-wiki/developers/179",
});
});
}
}