You've already forked obsidian-visualiser
Migration to Nuxt v4 file structure and dependencies update
This commit is contained in:
14
app/components/base/SelectGroup.vue
Normal file
14
app/components/base/SelectGroup.vue
Normal file
@@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<SelectGroup :disabled="disabled" class="">
|
||||
<SelectLabel class="">{{ label }}</SelectLabel>
|
||||
<slot />
|
||||
</SelectGroup>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { SelectGroup } from 'radix-vue';
|
||||
const { label, disabled = false } = defineProps<{
|
||||
label: string
|
||||
disabled?: boolean
|
||||
}>();
|
||||
</script>
|
||||
Reference in New Issue
Block a user