In laravel 5.5/vue.js appication I would like to use jquery-confirm library and for this In my resources/views/layouts/app.blade.php I wrote:
...
@yield('content')
</div>
<!-- Scripts -->
<script src="{{ asset('js/jquery/jquery.min.js') }}"></script>
<script src="{{ asset('js/funcs.js') }}"></script>
<script src="{{ asset('js/my_app.js') }}"></script>
<script src="{{ asset('js/jquery/jquery-confirm.min.js') }}"></script>
<script src="{{ asset('js/app.js') }}"></script>
</body>
<footer>
</footer>
</html>
But in console I got the error :
Uncaught TypeError: $.confirm is not a function
Was it wrong way of attaching files to the app? Which is the right way?
Thanks!