I am trying to add external js file in vue app.vue. But it's not working. I followed this as adding external style sheet. Also want to include in a component for another js file. I am beginner in vue js. How can I include this. Thanks in advance . I am using vue cli
App.vue
  <template>
    <div id="app">
       <router-view/>
    </div>
  </template>
 <script>
    @import './assets/plugins/bootstrap/js/popper.min.js';
    @import './assets/plugins/bootstrap/js/bootstrap.min.js';
    @import './assets/js/jquery.slimscroll.js';
  </script>
 
    