0
VueJSコンポーネントでどのhtmlタグをレンダリングするかをユーザーが決定できるかどうかは疑問です。VueコンポーネントでレンダリングされたHTMLタグを変更する
例えば、<my-component>Some Text</my-component>
があるとします。
どのhtmlタグがレンダリングされるかを決定するタグと呼ばれるプロパティを持つことができます。したがって、たとえば:
<a href="http://some-url.com">Some Text</my-component>
そして:
<my-component tag="div">Some Text</my-component>
にレンダリングされます:
<div>Some Text</my-component>
などなどh1-h6, p, span
および他のための
<my-component tag='a' href="http://some-url.com">Some Text</my-component>
はにレンダリングされますタグ。
アイデア?
ありがとうございました。
感謝。 – Moshe