skip to Main Content

I'm storing axios response into two different "data" variables, if I change one variable it will automatically changes other variable – Twitter API

In the below html code , I'm simply iterating through 2 variables posts and cp_posts: HTML CODE <div v-if="loading"> loading... </div> <div v-else> <p style="background:#ebebeb" v-for="post in posts"> {{post}} </p> <p style="background:#ebaaeb" v-for="post in cp_posts"> {{post}} </p> </div> </div> In…

VIEW QUESTION
Back To Top
Search