lx-music-desktop/src/renderer/views/Setting/components/SettingAbout.vue
2023-07-14 15:11:10 +08:00

81 lines
3.1 KiB
Vue
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.

<template lang="pug">
dt#about {{ $t('setting__about') }}
dd
.p.small
| 本软件完全免费代码已开源开源地址
span.hover.underline(:aria-label="$t('setting__click_open')" @click="openUrl('https://github.com/lyswhut/lx-music-desktop#readme')") https://github.com/lyswhut/lx-music-desktop
.p.small
| 最新版网盘下载地址网盘内有WindowsMAC版
span.hover.underline(:aria-label="$t('setting__click_open')" @click="openUrl('https://www.lanzoui.com/b0bf2cfa/')") 网盘地址
| &nbsp;&nbsp;密码
span.hover(:aria-label="$t('setting__click_copy')" @click="clipboardWriteText('glqw')") glqw
.p.small
| 软件的常见问题可转至
span.hover.underline(:aria-label="$t('setting__click_open')" @click="openUrl('https://lyswhut.github.io/lx-music-doc/desktop/faq')") 常见问题
.p.small
strong 本软件没有客服
| 但我们整理了一些常见的使用问题
strong 仔细 仔细 仔细
| 地阅读常见问题后
.p.small
| 仍有问题可加企鹅群&nbsp;
span.hover(:aria-label="$t('setting__click_open')" @click="openUrl('https://jq.qq.com/?_wv=1027&k=51ECeq2')") 830125506
| &nbsp;反馈
strong (为免满人无事勿加入群先看群公告)
| 或到 GitHub 提交&nbsp;
span.hover.underline(:aria-label="$t('setting__click_open')" @click="openUrl('https://github.com/lyswhut/lx-music-desktop/issues')") issue
br
.p.small
| 如果你喜欢并经常使用洛雪音乐并想要第一时间尝鲜洛雪的新功能&nbsp;
span(style="text-decoration: line-through;") 当小白鼠
|
.p
| 可以加入测试企鹅群&nbsp;
span.hover(:aria-label="$t('setting__click_open')" @click="openUrl('https://qm.qq.com/cgi-bin/qm/qr?k=zR6aYosQoKb07g4FGFZdO9n9zL1dhFpE&jump_from=webapi')") 768786588
| &nbsp;注意测试版的功能可能会不稳定
strong 打算潜水的勿加
br
.p.small 由于软件开发的初衷仅是为了对新技术的学习与研究因此软件直至停止维护都将会一直保持纯净
.p.small
| 目前本项目的原始发布地址只有&nbsp;
strong GitHub
| &nbsp;&nbsp;
strong 蓝奏网盘
| &nbsp;其他渠道均为第三方转载发布可信度请自行鉴别
.p 本项目无微信公众号之类的官方账号谨防被骗
.p.small
| 你已签署本软件的&nbsp;
base-btn(min @click="handleShowPact") 许可协议
| 协议的在线版本在&nbsp;
strong.hover.underline(:aria-label="$t('setting__click_open')" @click="openUrl('https://github.com/lyswhut/lx-music-desktop#%E9%A1%B9%E7%9B%AE%E5%8D%8F%E8%AE%AE')") 这里
| &nbsp;
br
.p
small By
| 落雪无痕
</template>
<script>
// import { ref, onBeforeUnmount } from '@common/utils/vueTools'
import { isShowPact } from '@renderer/store'
import { openUrl, clipboardWriteText } from '@common/utils/electron'
export default {
name: 'SettingAbout',
setup() {
const handleShowPact = () => {
isShowPact.value = true
}
return {
openUrl,
clipboardWriteText,
handleShowPact,
}
},
}
</script>