[Vuejs]-Bootstrap Vue and Axios

0👍

Got it. I was rendering the tabs separately, which was breaking everything.

const vm = new Vue({
        el: '#app',
        data: {
            
          results: ''
        
        },
        el: '#tabby',
        mounted() {
          axios.get(url, {params: { section: 'atari2600'}}).then(response => {
            this.results = response.data
            console.log(response);
            $('#loader1').hide();
          })
        }
      });

Leave a comment