Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Vue.js Basics Introducing Vue Hello Vue

placeholders not updating

i wrote the code the same but my place holders shows {{ title }} on the browser still

1 Answer

I had the same problem, first check your data is written correctly, secondly make sure that variables ahve been assigned correctly. heres the code the ended up working for me: const helloWorld = new Vue({ el: '#helloVue', data:{ title: "Hello, world!" } });

2 years later and I'm encountering same problem. I'm using VSCode live server extension, placeholder updates when I restart live server. Also in browser console you should see "You are running Vue in development mode", if not, Vue is not loaded properly and you will get {{ title }}