[Vuejs]-Vue.js alert pops instead of console.log or anything else

0👍

Run npm run watch , it will recompile your whole asset( any js or css file).

0👍

Don’t forget to run npm run watch (or dev) to update your built assets.

About your button, replace

<button class="btn btn-primary ml-4" @click="followUser" v-text="buttonText"></button>

By

<button class="btn btn-primary ml-4" @click="followUser">{{ buttonText }}</button>

Leave a comment