и внедрению в хтмл?
onSelectChapterInMenu(name) {
fetch(`chapters/${name}.html`)
.then(d => d.text())
.then(html => {
Vue.component( name, { template: html } );
this.activeChapter = name;
});
}
+ in HTML
HTML
<chapters>
<chapter :is="activeChapter" :active="true" :item-key="activeChapter"></chapter>
</chapters>
но это не работает
Это что за извращение над вуем? Какая задача ? у тебя this указывает вникуда
Обсуждают сегодня