Answer the question
In order to leave comments, you need to log in
Error with props in components, how to solve?
Vue.component('blog-post', {
props: ['title', 'text'],
template: `
<h3>{{title}}</h3>
<p>{{text}}</p> <!-- Ошибка -->
`
})
const app = new Vue({
el: '#app'
})
<div id="app">
<blog-post title="Hello Vue.js" text="Vue.js this is amazing!"></blog-post>
</div>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question