| 123456789101112131415161718192021222324252627 |
- ModalWindow(
- :isVisible="isVisible"
- @update:isVisible="$emit('update:isVisible', $event)"
- :title="title"
- :showFooter="false"
- :contentClass="'max-w-md'"
- )
- template([body])
- div(class="success-content text-center")
- div(class="success-icon mb-4")
- svg(
- class="w-16 h-16 mx-auto text-green-500"
- fill="none"
- stroke="currentColor"
- viewBox="0 0 24 24"
- )
- path(
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"
- )
- p(class="text-gray-600 dark:text-gray-400 mb-6 leading-relaxed") {{ content }}
- button(
- @click="$emit('update:isVisible', false)"
- class="bg-accent text-white px-6 py-3 rounded-lg font-medium hover:bg-yellow-600 transition-colors w-full"
- ) Понятно
|