mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
8 lines
118 B
Vue
8 lines
118 B
Vue
<template>
|
|
<h3 :id="id"><slot /></h3>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps<{ id: string }>()
|
|
</script>
|