Techassi

Results 76 comments of Techassi

I would consider this as resolved, because Vue `3.3.7` was released in October 2023. This release is now roughly one year old. Feel free to re-open this issue if you...

Do you have a minimal reproduction case, maybe as a Git repo or a StackBlitz link? This makes it easier for me too look into this issue.

Great, thank you! I will look into it. I guess it's some kind of issue with state management of the player manager. I'm planning to release a special Nuxt package...

It is indeed related to the state management. I will release a Nuxt module `@vue-youtube/nuxt` with the `0.0.3` version. It will correctly create the manager and register it to the...

I implemented Nuxt support, which should work in theory but yet it doesn't. Seems like a Nuxt issue... I wanted to release Nuxt support with the 0.0.3, but it seems...

Great will push the changes soon.

Published the (non working) Nuxt module on the [`nuxt`](https://github.com/vue-youtube/vue-youtube/tree/nuxt) branch. Maybe one will spot the mistake I made... **EDIT** Add mention @CodyBontecou

Yeah this is an issue with inject/provide. The manager is provided via the plugin setup hook: ```typescript install(app) { app.provide(PROVIDE_KEY, manager); this._insert(); // Insert the needed script tags, unrelated to...

Hi @mateusfmello, thank you for the thorough report! Do you have a link to a minimal repoduction project, e.g. via [StackBlitz](https://stackblitz.com/fork/github/vue-youtube/vue-youtube?file=playgrounds/vue/src/app.vue)? Also, let's try to clear up some things: -...

Thank you for the reproduction code, I will take a look.