| 123456789101112131415161718 |
- document.head.insertAdjacentHTML 'beforeend', '<style type="text/css" file="app/pages/Home.styl">'+stylFns['app/pages/Home.styl']+'</style>'
- module.exports =
- name: 'Home'
- render: (new Function '_ctx', '_cache', renderFns['app/pages/Home.pug'])()
- data: ->
- return {
- _: _
- document: null
- }
- beforeMount: ->
- try
- @document = await AppDB.getDocumentByPath('/', AppDB.currentLanguage)
- catch e
- debug.log "Document load error:", e
- components:
- 'app-link': require 'app/shared/AppLink'
- 'hero-section': require 'app/shared/HeroSection'
- 'image-gallery': require 'app/shared/ImageGallery'
|