mirror of
https://github.com/woodchen-ink/md-wechat.git
synced 2025-07-18 05:32:02 +08:00
12 lines
255 B
Vue
12 lines
255 B
Vue
<script setup lang="ts">
|
|
import { ContextMenuGroup, type ContextMenuGroupProps } from 'radix-vue'
|
|
|
|
const props = defineProps<ContextMenuGroupProps>()
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuGroup v-bind="props">
|
|
<slot />
|
|
</ContextMenuGroup>
|
|
</template>
|