Hej, potrafi ktoś skonwertować ten kawałek kodu napisanego w PUG do poprawnego kodu EJS? ponieważ żaden converter nie daje rady.
if (Message.length)
.lightbox(v-show="showFeedback")
.lightbox__content
h2.lightbox__header #{ Message }
.lightbox__actions.lightbox__actions--centered
button.btn.btn--primary(@click="closeFeedbackLightbox") Close
EDIT: Trochę wysiłku i dałem jakoś radę sam.. Dla kogoś kto będzie kiedyś szukał coś podobnego:
<% if (Message.length) { %>
<div class="lightbox" v-show="showFeedback">
<div class="lightbox__content">
<h2 class="lightbox__header"> <%= Message %> </h2>
<div class="lightbox__actions lightbox__actions--centered">
<button class="btn btn--primary" @click="closeFeedbackLightbox">Close</button>
</div>
</div>
</div>
<% } %>