Replies: 3 comments 7 replies
-
Vue Macros welcomes feature proposals. It means if you'd like, you could create a PR for it, and I'd like to accept it. But for me, I don't have too much enthusiasm for this proposal, since I don't think |
Beta Was this translation helpful? Give feedback.
2 replies
-
I want to create a
<script setup>
const title = ref('')
</script>
<template>
<div :title />
</template>
<script setup lang="tsx">
let title = ref('')
export default <div {title} />
</script> |
Beta Was this translation helpful? Give feedback.
2 replies
-
How about converting ![]() |
Beta Was this translation helpful? Give feedback.
3 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, great work!
I was wondering any plan for creating shorthand for v-bind?
We know that Vue had shorthand for v-bind for single prop:
And we can also use v-bind using object:
Would be nice if we had shorthand for v-bind on object. Maybe something like or other format syntax is welcome:
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions