Stefan Hoelzl
Stefan Hoelzl
I already moved to [Key Promoter X](https://plugins.jetbrains.com/plugin/9792-key-promoter-x) because my main goal is to learn the shortcuts (see #26)
@alce yes, this workaround I am currently using. But I would prefer to fix `tonic` and not needing this workaround :)
Put up a Draft-PR how this could work! There are two tests I may need some guidance how to solve this (see PR). This will also break backwards-compatibility, but maybe...
As described in the [documentation](https://stefanhoelzl.github.io/vue.py/docs/vue_concepts/plugins_mixins.html) native Vue Plugins work out of the box with `vuepy`. try this example `app.py` ```python from browser import window from vue import Vue, VueComponent Vue.use(window.VueSocketIO.new({...
Thank you for reporting this. Indeed tests for the VuePlugin are missing, I will need to dig into it an check what's wrong there.
what is your use case? for know the concept is to have a pure python project and do not mix .py and .js/.vue files. you can have a look at...
I agree writing HTML and CSS in python strings is not very comfortable. But on the other hand in a .vue file you will miss a lot of handy things...
I added some missing documentation how to specify external templates in `vuepy.yml`. These allow you to write your html templates in a separate `.html`-file. In addition with specifying your `.css`-files...
@mahdi-b do you have some documentation about how to build web components with vue v2? I only found documentation for [vue v3](https://vuejs.org/guide/extras/web-components.html) but vue.py currently is built on top of...
how do you get this error? Can you post your `app.py`? Are you using static or flask provider?