Skip to content
Discussion options

You must be logged in to vote
<script setup>
import { ref,h } from 'vue'
  
const handleClick = () => {
   alert('click!!')
}
const MyButton=h('button',{type:'button',onClick:handleClick,style:'color:red'},"hello")
</script>

<template>
 <MyButton></MyButton>             
</template>

Wrap it like this. Demo

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@nazar1ua
Comment options

Answer selected by nazar1ua
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants