Skip to content
New issue

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

Add $defineProp #511

Closed
3 tasks done
zhiyuanzmj opened this issue Sep 22, 2023 · 0 comments · Fixed by #510
Closed
3 tasks done

Add $defineProp #511

zhiyuanzmj opened this issue Sep 22, 2023 · 0 comments · Fixed by #510
Labels
enhancement New feature or request

Comments

@zhiyuanzmj
Copy link
Member

Clear and concise description of the problem

Add reactivity transform support to defineProp.

Suggested solution

<script setup lang="ts">
// Kevin's Edition
const foo = defineProp<string>()
const bar = $defineProp('bar', { default: 'bar', required: true })
const baz = $(defineProp('baz', { default: 'baz' }))
console.log(foo.value, bar, baz)

// Johnson's Edition
const foo = defineProp<string>()
const bar = $defineProp(() => 'bar', true)
const baz = $(defineProp('baz'))
console.log(foo.value, bar, baz)
</script>

Alternative

No response

Additional context

No response

Validations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant