0
如何使用文本插值渲染模板內的組件?我嘗試了下面的代碼:Vue JS文本插值表達式返回html或組件
<template>
<div> {{ booleanValue ? "<my-component />" : "Some Text" }} </div>
</template>
但是,這是打印與「雙鬍子」的實際代碼,刪除組件標籤,也渲染組件。
{{ booleanValue ? "" : "Some Text" }}
這是做了正確的道路。文本插值是 - 等待它 - 僅文本。沒有組件。 –