keanu-weblite/src/components/RoundedDialog.vue

15 lines
239 B
Vue
Raw Normal View History

2025-05-08 11:52:39 +02:00
<template>
<v-dialog v-bind="{ ...$props, ...$attrs }" content-class="v-dialog-rounded">
<slot></slot>
</v-dialog>
</template>
<script>
export default {
};
</script>
<style lang="scss">
@import "@/assets/css/chat.scss";
</style>