We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 438b41b commit e5bcad1Copy full SHA for e5bcad1
packages/gui/src/view/App.vue
@@ -130,6 +130,9 @@ export default {
130
window.config.disableSearchBar = false
131
this.$router.replace(item.path)
132
},
133
+ async openExternal (url) {
134
+ await this.$api.ipc.openExternal(url)
135
+ },
136
137
}
138
</script>
@@ -175,7 +178,7 @@ export default {
175
178
</a-layout-content>
176
179
<a-layout-footer>
177
180
<div class="footer">
- ©2020-2025 docmirror.cn by Greper, WangLiang <span>{{ info.version }}</span>
181
+ ©2020-2025 docmirror.cn by <a @click="openExternal('https://github.com/greper')">Greper</a>, <a @click="openExternal('https://github.com/wangliang181230')">WangLiang</a> <span>{{ info.version }}</span>
182
</div>
183
</a-layout-footer>
184
</a-layout>
0 commit comments