Eduardo San Martin Morote
Eduardo San Martin Morote
What I'm saying is that `#-7` or `#3` is a valid id. In more real scenarios `$pinia` is a valid title but the problem doesn't come from mdit-vue, in fact,...
It's because it uses querySelector() instead of getElementById @ByMykel . That should work in the next version of vitepress
I think that you might find this Data Loaders RFC interesting: https://github.com/vuejs/rfcs/discussions/460#discussioncomment-6172711 It takes away the boilerplate you seem to have and no need to rely on the root component...
I think they were. At least, I do plan on making them available. Be aware that the loaders are subject to change.
this and any other current route information will have to wait for https://github.com/WICG/navigation-api to become stable in terms of API so we can provide an API that aligns with it...
Thanks a lot for sharing! If anybody has a Vue 3 version to share, make sure to add it to https://github.com/vuejs/router/discussions!
This would potentially also enable an `app.onUnmount()` with just one line ```ts app.onUnmount = (fn) => app.runWithContext(() => onScopeDispose(fn)) ``` - https://github.com/vuejs/core/pull/4619 - https://github.com/vuejs/core/issues/4516
1. I think yes, I don't see why this should be in runtime-dom instead of core 2. I'm not sure but I don't think it matters
Are you aware of any workaround to include the `declare module` part? @octogonz In case I can avoid to append the declare module code by hand 😄
It seems that this feature is at least partially in beta (https://firebase.google.com/docs/reference/js/firestore_). For the time being you should be able to create your own `useFirestore()` with more parameters. It should...