Skip to content

Commit 1d321ce

Browse files
committed
fix:remove a useless icon
1 parent 329e929 commit 1d321ce

21 files changed

+708
-29
lines changed

.env.development

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VITE_API_BASE_URL="http://localhost:1337"

.env.production

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VITE_API_BASE_URL="http://backend.test"

components.d.ts

+9
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,16 @@ declare module '@vue/runtime-core' {
1212
NButton: typeof import('naive-ui')['NButton']
1313
NCard: typeof import('naive-ui')['NCard']
1414
NConfigProvider: typeof import('naive-ui')['NConfigProvider']
15+
NForm: typeof import('naive-ui')['NForm']
16+
NFormItem: typeof import('naive-ui')['NFormItem']
17+
NFormItemRow: typeof import('naive-ui')['NFormItemRow']
18+
NIcon: typeof import('naive-ui')['NIcon']
19+
NInput: typeof import('naive-ui')['NInput']
1520
NSpace: typeof import('naive-ui')['NSpace']
21+
NTab: typeof import('naive-ui')['NTab']
22+
NTabPane: typeof import('naive-ui')['NTabPane']
23+
NTabs: typeof import('naive-ui')['NTabs']
24+
NTooltip: typeof import('naive-ui')['NTooltip']
1625
RouterLink: typeof import('vue-router')['RouterLink']
1726
RouterView: typeof import('vue-router')['RouterView']
1827
}

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8">
5-
<link rel="icon" href="/favicon.ico">
5+
<link rel="icon" href="favicon.ico">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Vite App</title>
7+
<title>Mutu Admin</title>
88
</head>
99
<body>
1010
<div id="app"></div>

package.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {
6-
"dev": "vite",
6+
"dev": "vite --host=0.0.0.0",
77
"build": "run-p type-check build-only",
88
"preview": "vite preview",
99
"build-only": "vite build",
@@ -12,8 +12,11 @@
1212
"format": "prettier --write src/"
1313
},
1414
"dependencies": {
15+
"axios": "^1.3.4",
1516
"naive-ui": "^2.34.3",
1617
"pinia": "^2.0.32",
18+
"qs": "^6.11.1",
19+
"sass": "^1.59.3",
1720
"unplugin-auto-import": "^0.15.1",
1821
"unplugin-vue-components": "^0.24.1",
1922
"vue": "^3.2.47",
@@ -22,14 +25,18 @@
2225
"devDependencies": {
2326
"@rushstack/eslint-patch": "^1.2.0",
2427
"@types/node": "^18.14.2",
28+
"@vicons/ionicons5": "^0.12.0",
2529
"@vitejs/plugin-vue": "^4.0.0",
2630
"@vue/eslint-config-prettier": "^7.1.0",
2731
"@vue/eslint-config-typescript": "^11.0.2",
2832
"@vue/tsconfig": "^0.1.3",
33+
"autoprefixer": "^10.4.14",
2934
"eslint": "^8.34.0",
3035
"eslint-plugin-vue": "^9.9.0",
3136
"npm-run-all": "^4.1.5",
37+
"postcss": "^8.4.21",
3238
"prettier": "^2.8.4",
39+
"tailwindcss": "^3.2.7",
3340
"typescript": "~4.8.4",
3441
"vfonts": "^0.0.3",
3542
"vite": "^4.1.4",

0 commit comments

Comments
 (0)