24 lines
637 B
Vue
24 lines
637 B
Vue
<script setup>
|
|
defineProps({
|
|
title: { type: String, default: null },
|
|
content: { type: [String, Number], default: null },
|
|
});
|
|
</script>
|
|
<template>
|
|
<QPopupProxy>
|
|
<QCard>
|
|
<slot name="title">
|
|
<div
|
|
class="header q-px-sm q-py-xs q-ma-none text-white text-bold bg-primary"
|
|
v-text="title"
|
|
/>
|
|
</slot>
|
|
<slot name="content">
|
|
<QCardSection class="change-detail q-pa-sm">
|
|
{{ content }}
|
|
</QCardSection>
|
|
</slot>
|
|
</QCard>
|
|
</QPopupProxy>
|
|
</template>
|