Как использовать vue компоненты в pug?
<!DOCTYPE html>
html(lang="en")
head
meta(charset="UTF-8")
meta(name="viewport", content="width=device-width, initial-scale=1.0")
meta(http-equiv="X-UA-Compatible", content="ie=edge")
link(rel="stylesheet", href="/homeworks/dz11.css")
script(src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js")
title Homework 7
body
#app
p {{text}}
todo-list
script.
new Vue({
el: "#app",
data: {
text: "Какой-то текст"
}
});
Vue.component("todo-list", {
template: "li Lorem ipsum dolor, sit amet consectetur adipisicing elit. Fugiat, laudantium?"
})
Выдаёт ошибку: Unknown custom element: - did you register the component correctly? For recursive components, make sure to provide the "name" option.