Component templating: switch from xml to tagged template strings #798
Closed
brandon942
started this conversation in
General
Replies: 1 comment 2 replies
-
You might be interested in this: https://vue-vine.dev/ |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
After examining many new UI frameworks 1 templating pattern appears to emerge as the winner more and more consistently: tagged template strings. (ivi, lit, vue-vine, ...)
Compared to vue's xml based solution the advantages are obvious.
It's similar to jsx but it's more powerful. It allows you to use jsx but it isn't limited to it exclusively. There is no need to deal with certain special file types either. It solves or covers many open issues and feature requests that I have seen.
In light of these advantages I propose adopting tagged template strings as one if not the new way of templating vue components.
Beta Was this translation helpful? Give feedback.
All reactions