@defer {
  <comments />
} @placeholder {
  <p>Future comments</p>
}

Defferable views can have a minimum loading duration:

@defer {
  <comments />
} @placeholder {
  <p>Future comments</p>
} @loading (minimum 2s) {
  <p>Loading comments...</p>
}