Replies: 1 comment 1 reply
-
There are two pull request related to your question (#100, #90). Maybe one of those fixes would be part of the next update of petite-vue, but in the meantime, you could use this solution. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am looping over a array of objects (
[ id: 1, value: 1 ]
) & i have a setup petite vue with custom Delimiters to use single curly braces{ value }
with$delimiters: ['{', '}']
, but it does not work inside of v-for needs to be double curly braces{{ value }}
.createApp({ $delimiters: ['{', '}'] }).mount()
how i can fix these problem or it will be fixed in upcoming versions of petite vue.
I would like to say Evan, you really did an awesome job, petite vue is really reactive, performant, & awesome. So, Thanks a lot.
for the future, try to extend it with router, supsense, portal (teleport), transition & more...
Beta Was this translation helpful? Give feedback.
All reactions