Answer the question
In order to leave comments, you need to log in
Why is the Vue.js component not showing up?
Started learning VueJS. I read the documentation a lot and for a long time. I decided to sit down and start doing, I already stumbled upon the problem that I can’t display the VueJS component.
new Vue.component('quiz-cell', {
template: "<p>Hey there, I'm a re'usable component</p>"
});
<div class="cell">
<quiz-cell></quiz-cell>
</div>
new Vue({
el: '#cell'
})
| Answer the question
In order to leave comments, you need to log in
Started learning VueJS. I read the documentation a lot and for a long time.
<!DOCTYPE html>
<html>
<head>
<title>Изучаем Vue.js</title>
<meta charset="utf-8" />
</head>
<body>
<div id="app">
</div>
<script src="https://unpkg.com/vue"></script>
<script>
var app = new Vue({
el: '#app'
})
</script>
</body>
</html>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question