0
私は、propsを使用してコンポーネントをレンダリングしようとしています。しかし、コンテンツ小道具がコンポーネントでない場合にのみ機能します。これが可能であるhttps://jsfiddle.net/eugenio4/onf54vt5/vue2でv-htmlがvueコンポーネントをレンダリングしない
// register modal component
Vue.component('component', {
template: '<span class="component-tag">This is component</span>',
})
// start app
new Vue({
el: '#app',
data: function(){
return {
test1 : '<label>this is label</label>',
test2 : '<component></component>' //this doest work
}
}
})
<!-- app -->
<div id="app">
<span v-html="test1"></span>
<span v-html="test2"></span>
</div>
:ここ
は一例ですか?