🔱: [client] sync upgrade with 3 commits [trident-sync]

build: publish success
chore:
pull/39/head
GitHub Actions Bot 2024-03-21 19:24:00 +00:00
parent 92f9371156
commit 56a1f8158a
3 changed files with 11 additions and 5 deletions

View File

@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.20.2](https://github.com/fast-crud/fast-crud/compare/v1.20.1...v1.20.2) (2024-03-21)
**Note:** Version bump only for package @fast-crud/fs-admin-antdv
## [1.20.1](https://github.com/fast-crud/fast-crud/compare/v1.20.0...v1.20.1) (2024-02-27) ## [1.20.1](https://github.com/fast-crud/fast-crud/compare/v1.20.0...v1.20.1) (2024-02-27)
**Note:** Version bump only for package @fast-crud/fs-admin-antdv **Note:** Version bump only for package @fast-crud/fs-admin-antdv

View File

@ -1,6 +1,6 @@
{ {
"name": "@fast-crud/fs-admin-antdv", "name": "@fast-crud/fs-admin-antdv",
"version": "1.20.1", "version": "1.20.2",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
@ -26,10 +26,10 @@
"@ant-design/icons-vue": "^6.1.0", "@ant-design/icons-vue": "^6.1.0",
"@aws-sdk/client-s3": "^3.383.0", "@aws-sdk/client-s3": "^3.383.0",
"@aws-sdk/s3-request-presigner": "^3.383.0", "@aws-sdk/s3-request-presigner": "^3.383.0",
"@fast-crud/fast-crud": "^1.20.1", "@fast-crud/fast-crud": "^1.20.2",
"@fast-crud/fast-extends": "^1.20.1", "@fast-crud/fast-extends": "^1.20.2",
"@fast-crud/ui-antdv": "^1.20.1", "@fast-crud/ui-antdv": "^1.20.2",
"@fast-crud/ui-interface": "^1.20.1", "@fast-crud/ui-interface": "^1.20.2",
"@iconify/iconify": "^3.1.1", "@iconify/iconify": "^3.1.1",
"@iconify/json": "^2.2.98", "@iconify/json": "^2.2.98",
"@iconify/vue": "^4.1.1", "@iconify/vue": "^4.1.1",

View File

@ -8,9 +8,11 @@
<script lang="ts"> <script lang="ts">
export default { export default {
// eslint-disable-next-line vue/multi-word-component-names
name: "Exception404", name: "Exception404",
methods: { methods: {
toHome() { toHome() {
//@ts-ignore
this.$router.push({ path: "/" }); this.$router.push({ path: "/" });
} }
} }