We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The parser errors on Vue components with values in the components object. Example from posed of a file that cannot be parsed today:
<template> <Box :pose="isVisible ? 'visible' : 'hidden'" /> </template> <script> import posed from 'vue-pose'; export default { props: ['isVisible'], components: { Box: posed.div({ visible: { opacity: 1 }, hidden: { opacity: 0 } }) } }; </script>
As with #3, it's possible that the easiest path forward here is to swap out the parser with something from Vue's internals.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The parser errors on Vue components with values in the components object. Example from posed of a file that cannot be parsed today:
As with #3, it's possible that the easiest path forward here is to swap out the parser with something from Vue's internals.
The text was updated successfully, but these errors were encountered: