I am using Larave 7.x version. To test JQuery, I put the following Code at the end inside body tag in welcome.blade.php
<script type="text/javascript">
$(document).ready(function () {
alert('JQuery is ready!');
});
</script>
It throws the following error...
Uncaught ReferenceError: $ is not defined at ...
Then I deleted deffer from the script.
<script src="{{ asset('js/app.js') }}" defer></script>
Now JQuery is Ok. But it throws the following error...
[Vue warn]: Cannot find element: #app
The matter is that, I can use either JQuery or Vue but not the both.
Is there any way to use both JQuery and Vue at the same time?