Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/cvetdv.ru/bitrix/js/vote/component/vote/src/components/popup/ |
Upload File : |
import { PopupOptions } from 'main.popup'; import { Popup } from 'ui.vue3.components.popup'; import { getMessage } from '../helpers/helpers'; import './style.css'; // @vue/component export const VotePopup = { name: 'VotePopup', components: { Popup }, emits: ['confirm', 'cancel'], computed: { getMessage: () => getMessage, popupOptions(): PopupOptions { return { width: 374, className: 'vote-display__popup', }; }, }, template: ` <Popup :options="popupOptions" @close="$emit('cancel')" id="vote-display-popup" > <div class="vote-display__popup-content"> <div class="vote-display__popup-title"> {{ getMessage('VOTE_POPUP_TITLE') }} </div> <div class="vote-display__popup-text"> {{ getMessage('VOTE_POPUP_TEXT') }} </div> </div> <div class="vote-display__popup-footer"> <button class="vote-display__popup-btn --complete" @click="$emit('confirm')"> {{ getMessage('VOTE_POPUP_BTN_COMPLETE') }} </button> <button class="vote-display__popup-btn --cancel" @click="$emit('cancel')"> {{ getMessage('VOTE_POPUP_BTN_CANCEL') }} </button> </div> </Popup> `, };