diff --git a/src/components/Settings/DesktopAndDock/DesktopAndDock.vue b/src/components/Settings/DesktopAndDock/DesktopAndDock.vue index ad947f6a..ddf6fe09 100644 --- a/src/components/Settings/DesktopAndDock/DesktopAndDock.vue +++ b/src/components/Settings/DesktopAndDock/DesktopAndDock.vue @@ -44,6 +44,24 @@ const dockPositions = computed(() => { }, ] }) + +const topBarLinkOpenModeOptions = computed(() => { + return [ + { + label: 'current tab', + value: 'currentTab', + }, + { + label: 'current tab if not homepage', + value: 'currentTabIfNotHomepage', + }, + { + label: 'new tab', + value: 'newTab', + }, + ] +}) + const pageOptions = computed((): { label: string, icon: string, value: string }[] => { return mainStore.dockItems.map((e: any) => { return { @@ -78,6 +96,9 @@ function handleToggleDockItem(dockItem: any) { + +