import type { SetupContext } from 'vue'
import type { TagEmits, TagProps } from '../tag'
export const useTag = (
props: TagProps,
emits: SetupContext<TagEmits>['emit']
) => {
const tagClickHandle = () => {
emits('click')
}
return {
tagClickHandle,
}
}