Skip to content

Commit 8dfbbdd

Browse files
author
piexlmax
committed
发布setup语法糖的beta版
1 parent 722ad31 commit 8dfbbdd

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

server/core/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ func RunWindowsServer() {
3838

3939
fmt.Printf(`
4040
欢迎使用 github.com/flipped-aurora/gin-vue-admin/server
41-
当前版本:V2.4.6
41+
当前版本:V2.5.0 beta
4242
加群方式:微信号:shouzi_1994 QQ群:622360840
4343
GVA讨论社区:https://support.qq.com/products/371961
4444
默认自动化文档地址:http://127.0.0.1%s/swagger/index.html

web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gin-vue-admin",
3-
"version": "2.4.6",
3+
"version": "2.5.0",
44
"private": true,
55
"scripts": {
66
"serve": "node openDocument.js && vite --host --mode development",

web/src/core/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const viteLogo = (env) => {
1818
)
1919
console.log(
2020
chalk.green(
21-
`> 当前版本:V2.4.6`
21+
`> 当前版本:V2.5.0`
2222
)
2323
)
2424
console.log(

web/src/core/gin-vue-admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default {
1010
register(app)
1111
console.log(`
1212
欢迎使用 Gin-Vue-Admin
13-
当前版本:V2.4.6
13+
当前版本:V2.5.0 beta
1414
加群方式:微信:shouzi_1994 QQ群:622360840
1515
GVA讨论社区:https://support.qq.com/products/371961
1616
默认自动化文档地址:http://127.0.0.1:${import.meta.env.VITE_SERVER_PORT}/swagger/index.html

web/src/core/global.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { emitter } from '@/utils/bus.js'
55
import * as ElIconModules from '@element-plus/icons'
66
// 导入转换图标名称的函数
77

8-
const closeThisPage = () => {
8+
export const closeThisPage = () => {
99
emitter.emit('closeThisPage')
1010
}
1111

@@ -14,8 +14,5 @@ export const register = (app) => {
1414
for (const iconName in ElIconModules) {
1515
app.component(iconName, ElIconModules[iconName])
1616
}
17-
1817
app.config.globalProperties.$GIN_VUE_ADMIN = config
19-
app.config.globalProperties.$CloseThisPage = closeThisPage
2018
}
21-

0 commit comments

Comments
 (0)