Files
lnbits/lnbits/templates/macros.jinja
T

10 lines
258 B
Django/Jinja

{% macro window_vars(user) -%}
<script>
//Needed for Vue to create the app on first load (although called on every page, its only loaded once)
window.app = Vue.createApp({
el: '#vue',
mixins: [window.windowMixin]
})
</script>
{%- endmacro %}