Ramon Saccilotto
Ramon Saccilotto
Hi @rklerck, Unfortunately we never got around to include mobile/touch support for the library. Click events on mobile devices are somewhat special, since this is actually a touch event that...
Well, zooming and panning should work. Maybe you could try to add an additional onTouch event handler.
Hi @jonnymaceachern, unfortunately, this is currently not implemented. I am planning to start a rewrite of the plugin at some point that will use an event pipeline for interaction. This...
Hi @marcodings, I might be able to work some more on the beta-branch in the coming weeks. It proposes a new plugin structure which might make it way simpler to...
Please have a look at the beta branch to find an implementation that works with viewBox and transforms.. I am already using this implementation in a production setting - it...
Hi @jonasgroendahl Apparently the description in the readme is not very clear. I will update the description in the coming days. ```javascript // using the translation directly (as specified in...
Hi @infinite-dao, Thank you for reporting this. Actually the problem is due to the way that multiple languages handle translations and the fact we introduced this at a later stage...
Hi @adminbmbc The translate function is currently only exposed on the Vue instance and inside the components. The vuex-i18n state is actually stored in the vuex module i18n (you should...
Hi @AbbasHasani Thank you for reporting this issue. The plugin is adding the property $i18n to the Vue prototype, to make the translations accessible in all components. It seems to...
And please make sure, that you add your exported store to the main vue instance of your application ```javascript new Vue({ el: '#app', render: h => h(App), router, store })...