특정 범주로 이동

테마 컴포넌트에 키보드 단축키를 추가할 수 있습니다. 초기화 파일에 다음과 같이 작성할 수 있습니다:

export default {
  name: "setup-shortcuts",
  initialize() {
    withPluginApi("0.11.4", () => {
      KeyboardShortcuts.addShortcut("g 1", null, {
        path: "/c/community-wiki/developers/179",
      });
    });
  }
}