Looking at your profile you ask a lot of similar questions. Please take time to go over some official docs and actually try before asking. Secondly if someone has provided you with an acceptable answer, it wouldn't hurt to mark it accepted. Otherwise you may be wasting other people's time offering answers when actually you've already made up your mind.
Regardless... What you're asking is the default behaviour of tabs
. Content of the tab is shown when clicked on the tab. What you want is to not automatically select first tab (perhaps?). That feature is not provided out-of-the-box. Design of the Material tabs is meant so that at least one tab is always selected.
Here are some ideas for a workaround though https://stackoverflow.com/a/53818913/15439733 or use conditional statemanets using *ngIf
to either render contents or not.