# vue/app/shared/SuccessModal/index.coffee document.head.insertAdjacentHTML('beforeend','') module.exports = name: 'SuccessModal' render: (new Function '_ctx', '_cache', renderFns['app/shared/SuccessModal/index.pug'])() props: isVisible: type: Boolean default: false title: type: String default: 'Успешно!' content: type: String required: true mounted: -> debug.log "SuccessModal component mounted" methods: {} emits: ['update:isVisible']