| 1234567891011121314151617181920 |
- # vue/app/shared/SuccessModal/index.coffee
- document.head.insertAdjacentHTML('beforeend','<style type="text/tailwindcss" component="SuccessModal">'+stylFns['app/shared/SuccessModal/index.styl']+'</style>')
- 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']
|