Can vue implement ngTemplateOutlet instructions similar to angular?

for example, this is a public header, but some of the content of the header is determined according to the specific page, which is similar to the tab tag content here. The tab content of different pages may be different. Can Vue deliver templates in the page?

Mar.06,2021

achievable
Child: < slot name= "test": test1= "987": test2= "123" > < / slot >

parent:
< test >

<div slot="test" slot-scope="{test1, test2}">{{test2}}{{test1}}</div>

< / test >

Menu