From 4f6b12feee7ab3984d11d1c798c36bd7dac22a2a Mon Sep 17 00:00:00 2001 From: FragginWagon Date: Wed, 28 Jan 2026 23:04:03 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=84=20Update=20project=20structure=20a?= =?UTF-8?q?nd=20documentation=20to=20reflect=20migration=20from=20React=20?= =?UTF-8?q?to=20Vue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/websites/pokedex.online/PROGRESS.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/code/websites/pokedex.online/PROGRESS.md b/code/websites/pokedex.online/PROGRESS.md index 0925a4a..7856f31 100644 --- a/code/websites/pokedex.online/PROGRESS.md +++ b/code/websites/pokedex.online/PROGRESS.md @@ -103,14 +103,17 @@ docker-compose up ``` src/ -├── components/ # React components +├── components/ # Vue single-file components +├── composables/ # Vue 3 Composition API composables +├── views/ # Page components ├── services/ # API & data services -├── hooks/ # Custom React hooks -├── utils/ # Helper functions -├── types/ # TypeScript types -├── styles/ # Global styles +├── utilities/ # Helper functions +├── config/ # Configuration files +├── directives/ # Custom Vue directives +├── router/ # Vue Router setup ├── workers/ # Web workers -└── App.tsx # Main component +├── style.css # Global styles +└── App.vue # Root component test/ ├── unit/ # Unit tests