Take these examples :
<ng-container *ngIf="vo$ | async; let vo">
and
<ng-container *ngIf="vo$ | async as vo">
They have the same purpose, getting the latest value of the observable into the variable vo.
But is there any difference between these 2 syntax ?