Files
fzu-product/使用指南.md

57 lines
2.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 使用指南
<script setup>
import { onMounted, ref } from 'vue';
function detectBrowserType() {
const userAgent = navigator.userAgent;
if (userAgent.indexOf('Chrome') > -1) {
browserType.value = 'Chrome';
} else if (userAgent.indexOf('Firefox') > -1) {
browserType.value = 'Firefox';
} else if (userAgent.indexOf('Safari') > -1) {
browserType.value = 'Safari';
} else if (userAgent.indexOf('Opera') > -1 || userAgent.indexOf('OPR') > -1) {
browserType.value = 'Opera';
} else if (userAgent.indexOf('Edge') > -1) {
browserType.value = 'Edge';
} else if (userAgent.indexOf('MSIE') > -1 || userAgent.indexOf('Trident/') > -1) {
browserType.value = 'Internet Explorer';
} else {
browserType.value = 'Unknown';
}
}
const browserType = ref('');
onMounted(() => {
detectBrowserType();
});
</script>
## 如何使用本WIKI
- 推荐使用 Chromium 内核的浏览器访问例如Chrome、Edge不同浏览器可能表现不一致您当前的浏览器是<code>{{ browserType }} </code>
- 推荐使用 `暗色模式` ,以获得更好的阅读体验。点击右上角切换按钮即可切换。
- 电脑端推荐按 `Ctrl + 加号` 将页面放大到 150% 以便于阅读。
-`Ctrl + 0` 可快速将页面缩小回 100% 。
- 使用 `Ctrl + F` 快速搜索在某一页面的内容。
- 使用 `Ctrl + K` 唤起搜索框,输入关键词即可快速搜索整个 wiki 。
## 如何提交issue
- 点击进入我们的 [`Gitea`](https://gitea.xinxijishubu.asia/moyin/fzu-product) 仓库。
- 点击页面右上角 `工单` 按钮,创建工单,即可提交问题。
- 请在提交问题时,尽量详细描述问题,以便我们更好地解决您的问题。
## 如何参与贡献?
- 点击页面右上角 `编辑本页` 按钮,即可编辑页面内容。
- 请在编辑时,尽量遵循 `Markdown` 语法,以便其他用户更好地阅读。
- 如果您有其他建议,欢迎在 `讨论区` 提出。
## 如何查看历史版本?