Skip to content

Commit

Permalink
chore: Update axios dependency to version 1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Gzh0821 committed Jul 12, 2024
1 parent 91ab6d5 commit 8c00a1d
Show file tree
Hide file tree
Showing 4 changed files with 101 additions and 7 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
"vuepress": "2.0.0-rc.14",
"vuepress-plugin-search-pro": "2.0.0-rc.50",
"vuepress-theme-hope": "2.0.0-rc.50"
},
"dependencies": {
"axios": "^1.7.2"
}
}
66 changes: 66 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/.vuepress/public/jsons/gameinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"InsideVersion": "0.1.0.3",
"Download":{
"Baidu":"https://pan.baidu.com/s/1eIFm5loVnLqOd69sghAjHg?pwd=pvz2",
"123":"https://www.123pan.com/s/xUemTd-zmZCh.html",
"Pan123":"https://www.123pan.com/s/xUemTd-zmZCh.html",
"Quark":"https://pan.quark.cn/s/573e27228a45",
"Github":"",
"Onedrive":"https://xj2y2-my.sharepoint.com/:u:/g/personal/gaozih_xj2y2_onmicrosoft_com/EV-iQNaYWHhMk2rAucF0m_kBjiDMkLGA2NnGbgMeKnmKqw?e=01CW1F"
Expand Down
37 changes: 31 additions & 6 deletions src/download/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ sidebar: false
category:
- Download
---

<script setup>
import axios from 'axios';
import { reactive, onBeforeMount } from 'vue'
const data = reactive({});

onBeforeMount(() => {
axios.get('/jsons/gameinfo.json').then(res => {
data.value = res.data;
})
})

</script>

> [!warning]
> 请注意:本页面提供的下载链接仅供学习交流使用,不得用于商业用途,请于下载后24小时内删除。
>
Expand All @@ -31,27 +45,38 @@ category:
>
> Onedrive和Github下载方式可能由于网络环境问题无法访问,请自行搜索解决。
当前最新的版本为 `preprepre-1.0.3`,请根据自己的需求选择下载。
本站只提供最新正式版本的下载链接<span v-if="data.value?.Version">,当前最新的游戏版本为 {{ data.value.Version }}</span>。


## Onedrive链接 <Badge text="推荐" type="tip" />

下载链接:[点击进入](https://xj2y2-my.sharepoint.com/:u:/g/personal/gaozih_xj2y2_onmicrosoft_com/EV-iQNaYWHhMk2rAucF0m_kBjiDMkLGA2NnGbgMeKnmKqw?e=01CW1F)
下载链接:<span v-if="data.value?.Download.Onedrive">
<a :href="data.value.Download.Onedrive">点击进入</a>
</span><span v-else>暂无</span>

## 百度网盘

下载链接:[点击进入](https://pan.baidu.com/s/1eIFm5loVnLqOd69sghAjHg?pwd=pvz2)
下载链接:<span v-if="data.value?.Download.Baidu">
<a :href="data.value.Download.Baidu">点击进入</a>
</span><span v-else>暂无</span>

## 123网盘链接

下载链接:[点击进入](https://www.123pan.com/s/xUemTd-zmZCh.html)
下载链接:<span v-if="data.value?.Download.Pan123">
<a :href="data.value.Download.Pan123">点击进入</a>
</span><span v-else>暂无</span>

## 夸克网盘链接

下载链接:[点击进入](https://pan.quark.cn/s/573e27228a45)
下载链接:<span v-if="data.value?.Download.Quark">
<a :href="data.value.Download.Quark">点击进入</a>
</span><span v-else>暂无</span>

## Github链接

暂无
下载链接:<span v-if="data.value?.Download.Github">
<a :href="data.value.Download.Github">点击进入</a>
</span><span v-else>暂无</span>



0 comments on commit 8c00a1d

Please sign in to comment.