Skip to content

Commit 50d735f

Browse files
committed
refactor(forms): Migrate Forms.vue to Vue 3 Composition API
- Converted component to use Vue 3's Composition API with setup() - Removed duplicate function declarations and fixed syntax issues - Updated lifecycle hooks to use onMounted/onUnmounted - Fixed reactivity using ref and computed - Cleaned up event handling and component structure - Ensured compatibility with Vue 3 and Nextcloud ecosystem
1 parent 8a0ebe1 commit 50d735f

File tree

5 files changed

+450
-482
lines changed

5 files changed

+450
-482
lines changed

package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,22 @@
5252
"vuedraggable": "^2.24.3"
5353
},
5454
"devDependencies": {
55-
"@mdi/js": "^7.4.47",
56-
"@mdi/svg": "^7.4.47",
5755
"@nextcloud/browserslist-config": "^3.0.1",
5856
"@nextcloud/e2e-test-server": "^0.2.1",
59-
"@nextcloud/eslint-config": "^8.4.2",
57+
"@nextcloud/eslint-config": "^9.0.0",
6058
"@nextcloud/prettier-config": "^1.2.0",
6159
"@nextcloud/stylelint-config": "^3.1.0",
62-
"@nextcloud/vite-config": "^1.5.6",
60+
"@nextcloud/vite-config": "^2.0.0",
6361
"@playwright/test": "^1.52.0",
62+
"@vitejs/plugin-vue": "^5.0.0",
63+
"@vue/compiler-sfc": "^3.4.0",
6464
"@vue/tsconfig": "^0.5.1",
65+
"eslint": "^8.0.0",
6566
"eslint-config-prettier": "^10.1.5",
67+
"eslint-plugin-vue": "^9.0.0",
6668
"prettier": "^3.5.3",
67-
"vite": "^6.3.5"
69+
"sass": "^1.60.0",
70+
"vite": "^5.0.0"
6871
},
6972
"engines": {
7073
"node": "^20.0.0",

0 commit comments

Comments
 (0)