@webkit, you have blaze and vue with tracker side by side with HMR? Will you show us your meteor list (meteor installs) and package.json (npm installs)?
What router are you using? And can you provide an example of using the two side by side?
There’s no Vue code there, there’s just main <app></app> component.
It’s easy to use Blaze templates in Vue components, but there’s no way to pass the props from Vue to Blaze for now. The workaround is to use Sessions, but that won’t work with 3rd party packages depending on props. (see two posts below for better workaround)
If you’re looking for example of how to use Vue components in Blaze templates, Akryum made an example project: https://github.com/Akryum/meteor-vue-blaze. It seems the way is to create a wrapper component around single file component. Clever. And yes, you can pass props this way.
Since I’m only using Blaze for Accounts, I don’t really have a need to pass props so as @gusto said, I’m injecting my Vue app into <app></app> inside the Blaze template… from there its purely Vue. In my main.js I just check to see if someone is logged in, then I $mount(app) like normal…
There actually is an easy solution I didn’t think of earlier. Create a wrapper Blaze template, inject the data from Vue through Session and then, pass them as props from the wrapper to 3rd party template like f.e. user-accounts package.
Well, I see you have user-accounts package in your project, so I took it as an example. If you’re asking for particular use case, let’s take this one:
{{> atForm state='changePwd'}}
let’s you to lock up the template to register view, as explained in the user-accountsguide template chapter.
To be honest, I took this example from a vue-componentissue, so it is a real life use case.
That’s just a basic example, as other 3rd party libraries like Autoform depend on the props much more.