soiz1's picture
Upload folder using huggingface_hub
4d70170 verified
raw
history blame
1.19 kB
<script lang="ts">
import type { ComponentInternalInstance, Ref } from 'vue'
import { defineComponent, getCurrentInstance, inject, onMounted, ref } from 'vue'
export default defineComponent({
name: 'VueSelectButton',
props: {
label: {
type: String,
default: null,
},
},
setup() {
const currentInstance = getCurrentInstance()
const groupButton = ref(null)
const { setCurrentChild, getCurrentChild } = inject<{
setCurrentChild: (child: ComponentInternalInstance) => void
getCurrentChild: () => Ref<ComponentInternalInstance | null>
}>('VueSelect')
onMounted(() => {
onSelect(groupButton.value.selected)
})
function onSelect(selected: boolean) {
if (selected) {
setCurrentChild(currentInstance)
}
else if (getCurrentChild()?.value === currentInstance) {
setCurrentChild(null)
}
}
return {
groupButton,
onSelect,
}
},
})
</script>
<template>
<VueGroupButton
ref="groupButton"
v-close-popper="true"
class="vue-ui-select-button"
:label="label"
flat
@selected="onSelect"
>
<slot />
</VueGroupButton>
</template>