mirror of
https://github.com/imsyy/SPlayer.git
synced 2025-11-25 03:14:57 +08:00
🔧 build: 修复构建
This commit is contained in:
3
.github/workflows/build.yml
vendored
3
.github/workflows/build.yml
vendored
@@ -39,8 +39,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
|
||||
# 清理不必要的构建产物
|
||||
- name: Cleanup Artifacts
|
||||
run: |
|
||||
npx rimraf "dist/!(*.exe)"
|
||||
run: npx del-cli "dist/**/*" "!dist/*.exe"
|
||||
# 上传构建产物
|
||||
- name: Upload artifacts
|
||||
uses: actions/upload-artifact@v4
|
||||
|
||||
1
components.d.ts
vendored
1
components.d.ts
vendored
@@ -131,7 +131,6 @@ declare module 'vue' {
|
||||
SongList: typeof import('./src/components/List/SongList.vue')['default']
|
||||
SongListCard: typeof import('./src/components/Card/SongListCard.vue')['default']
|
||||
SongListMenu: typeof import('./src/components/Menu/SongListMenu.vue')['default']
|
||||
SongListNew: typeof import('./src/components/List/SongListNew.vue')['default']
|
||||
SvgIcon: typeof import('./src/components/Global/SvgIcon.vue')['default']
|
||||
TextContainer: typeof import('./src/components/Global/TextContainer.vue')['default']
|
||||
UpdateApp: typeof import('./src/components/Modal/UpdateApp.vue')['default']
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
<!-- 登录方式 -->
|
||||
<n-tabs class="login-tabs" default-value="login-qr" type="segment" animated>
|
||||
<n-tab-pane name="login-qr" tab="扫码登录">
|
||||
<loginQRCode @saveLogin="saveLogin" />
|
||||
<LoginQRCode @saveLogin="saveLogin" />
|
||||
</n-tab-pane>
|
||||
<n-tab-pane name="login-phone" tab="验证码登录">
|
||||
<loginPhone @saveLogin="saveLogin" />
|
||||
<LoginPhone @saveLogin="saveLogin" />
|
||||
</n-tab-pane>
|
||||
</n-tabs>
|
||||
<!-- 关闭登录 -->
|
||||
|
||||
Reference in New Issue
Block a user