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

218 - 渲染函数[h()] setup写法 #2808

Open
Tofu-Xx opened this issue Sep 15, 2024 · 1 comment
Open

218 - 渲染函数[h()] setup写法 #2808

Tofu-Xx opened this issue Sep 15, 2024 · 1 comment

Comments

@Tofu-Xx
Copy link

Tofu-Xx commented Sep 15, 2024

import { h, defineComponent } from "vue"

export default defineComponent({
  setup:
    (_, { slots, emit }) => () =>
      h('button', {
        onClick: () => emit('custom-click')
      }, slots.default())
});
@Tofu-Xx
Copy link
Author

Tofu-Xx commented Sep 15, 2024

disabled可以透传

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant