reactive issue: component <-> composable
Hi, i have a composable
then in a component i want to use it and change
it updates correctly in the component, but the
How can i achieve reactiveness between the composable and the component?
useThemeConfig which exports a reactive themeConfig:then in a component i want to use it and change
themeLight['--primary-color'] for example:it updates correctly in the component, but the
themeConfig in the composable did not change..How can i achieve reactiveness between the composable and the component?