Skip to content
This repository was archived by the owner on Sep 30, 2023. It is now read-only.

Commit 85235be

Browse files
committed
refactor: remove vue global helper functions, update deps
1 parent 81b1d80 commit 85235be

31 files changed

+321
-357
lines changed

.vscode/vue.code-snippets

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"Vue setup ts": {
3-
"prefix": "vue",
4-
"body": [
5-
"<script setup lang=\"ts\">",
6-
"import { defineProps } from 'vue'\n",
7-
"defineProps({$2})\n",
8-
"</script>\n",
9-
"<template>",
10-
"\t$1",
11-
"</template>\n"
12-
],
13-
"description": "Vue SFC setup typescript Template"
14-
}
3+
"prefix": "vue",
4+
"body": [
5+
"<script setup lang=\"ts\">",
6+
"import { ref } from 'vue'\n",
7+
"defineProps<{$2}>()\n\n",
8+
"const a = ref($3)\n",
9+
"</script>\n",
10+
"<template>",
11+
"\t$1",
12+
"</template>\n"
13+
],
14+
"description": "Vue SFC setup typescript Template"
15+
}
1516
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,29 +11,29 @@
1111
"dependencies": {
1212
"@vee-validate/i18n": "^4.4.5",
1313
"@vee-validate/rules": "^4.4.5",
14-
"@vueuse/core": "^5.0.3",
14+
"@vueuse/core": "^5.1.0",
1515
"axios": "^0.21.1",
1616
"dayjs": "^1.10.5",
1717
"mitt": "^3.0.0",
1818
"vee-validate": "^4.4.5",
19-
"vue": "^3.1.3",
19+
"vue": "^3.1.4",
2020
"vue-router": "^4.0.10",
2121
"yup": "^0.32.9"
2222
},
2323
"devDependencies": {
24-
"@hannoeru/eslint-config": "^0.1.5",
25-
"@iconify/json": "^1.1.368",
24+
"@hannoeru/eslint-config": "^0.2.0",
25+
"@iconify/json": "^1.1.370",
2626
"@openapitools/openapi-generator-cli": "^2.3.5",
2727
"@vitejs/plugin-vue": "^1.2.4",
28-
"@vue/compiler-sfc": "^3.1.3",
29-
"eslint": "^7.29.0",
28+
"@vue/compiler-sfc": "^3.1.4",
29+
"eslint": "^7.30.0",
3030
"typescript": "^4.3.5",
31-
"vite": "^2.3.8",
31+
"vite": "^2.4.0",
3232
"vite-plugin-components": "^0.12.0",
33-
"vite-plugin-icons": "^0.6.3",
33+
"vite-plugin-icons": "^0.6.4",
3434
"vite-plugin-pages": "^0.14.8",
3535
"vite-plugin-windicss": "^1.2.0",
3636
"vue-tsc": "^0.2.0",
37-
"windicss": "^3.1.3"
37+
"windicss": "^3.1.4"
3838
}
3939
}

0 commit comments

Comments
 (0)