📝 更新文档

This commit is contained in:
chaos-zhu 2024-12-22 22:56:05 +08:00
parent 0cbe43ecdd
commit 5f0e6e9ecc
2 changed files with 13 additions and 3 deletions

View File

@ -1,3 +1,11 @@
## [3.0.3](https://github.com/chaos-zhu/easynode/releases) (2024-12-22)
* 支持keyboard-interactive服务器验证(serv00验证通过)
* 支持TG Bot通知方式
* 添加web端Plus授权功能
* 修复一些UI问题
* 修复MFA2登录验证码为0开头无法输入的bug
## [3.0.2](https://github.com/chaos-zhu/easynode/releases) (2024-11-20)
* 修复添加实例错误禁用的bug

View File

@ -10,7 +10,7 @@
size="small"
type="primary"
link
@click="handlePlusSupport"
@click="gotoPlusPage"
>
去激活
</el-button>
@ -22,13 +22,15 @@
<script setup>
import { computed, getCurrentInstance } from 'vue'
import { useRouter } from 'vue-router'
const { proxy: { $store } } = getCurrentInstance()
const router = useRouter()
const isPlusActive = computed(() => $store.isPlusActive)
const handlePlusSupport = () => {
window.open('https://en.221022.xyz/buy-plus', '_blank')
const gotoPlusPage = () => {
router.push('/setting?tabKey=plus')
}
</script>