From 16f610fc871920d7e0cce9ef5ec6af48996712f2 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Wed, 27 May 2026 21:49:32 +0200 Subject: [PATCH] feat(adr-036): migrate App.vue to v2 kind-tagged registry prop Replace the deprecated customComponents prop with the v2 registry prop on CnAppRoot (ADR-036). Each page component is wrapped as { kind: 'page', component } via src/registry.js. --- appinfo/info.xml | 2 +- src/App.vue | 31 +++----- src/customComponents.js | 89 ---------------------- src/main.js | 17 ++--- src/registry.js | 159 +++++++++++++++++++++++++--------------- 5 files changed, 119 insertions(+), 179 deletions(-) delete mode 100644 src/customComponents.js diff --git a/appinfo/info.xml b/appinfo/info.xml index d8419661..7ce67a4c 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -22,7 +22,7 @@ Vrij en open source onder de EUPL-1.2-licentie. **Ondersteuning:** Voor ondersteuning, neem contact op via support@conduction.nl. ]]> - 0.3.7 + 0.3.8 agpl Conduction OpenBuilt diff --git a/src/App.vue b/src/App.vue index dbbca090..b98f9ca5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,21 +1,22 @@