[Vuejs]-Styling not being applied to SINGLE ELEMENT after exacting JQuery function on single element within a ,vue page

0👍

You can put the asrange method of initializing into mounted

...
...

<script>
import $ from 'jquery';
import 'jquery-asRange';

export default {
  mounted(){
    $(".range-example").asRange({
      range: true,
      limit: false,
      tip: true,
    });
  }
}
</script>

Leave a comment