SplashScreen
AppUygulama başlatma tam ekran bindirme katmanı. logoContent slotu, ilerleme çubuğu ve mesaj alanı içerir.
Acme
Loading…
Loading your workspace…
<%- include('modules/app/SplashScreen', {
logoContent: 'Acme',
message: 'Loading your workspace…',
progress: loadProgress
}) %>
Loading…
<%- include('modules/app/SplashScreen') %>
<%
var _visible = locals.visible !== false;
var _progress = (locals.progress !== undefined && locals.progress !== null) ? locals.progress : null;
%>
<% if (locals.logoContent) { %>
<%- locals.logoContent %>
<%- include('../ui/Spinner', { size: 'lg' }) %>
<% } else { %>
<%- include('../ui/Spinner', { size: 'xl' }) %>
<% } %>
<% if (_progress !== null) { %>
<% } %>
<% if (locals.message) { %>
<%= locals.message %>
<% } %>