如何在Laravel 5.7中使用Vue.js文件(不是CDN)?

I have almost completed my Admin Panel in laravel 5.7, however needed to use VueJS for some component. I am aware Vue comes by default with laravel, and also saw the app.js file under resources/js directory in laravel.

However, is there a possibility where I can use Vue.js file that I have downloaded, and import it with the script tag? I tried by placing the script and vue code in the blade file itself, but it conflicts with the laravel {{ blade_syntax }}.

Is there a systematic way to not use VueCLI, or CDN, but the plain vuejs file? Need I copy the vuejs file i downloaded inside Laravel Project? If so, where should I place the file?

Or am I going wrong somewhere?

Any suggestion would be highly appreciated.

you need to place the vue.js or any js,css script to the public folder of your laravel projects. in your laravel projects look for public place your vue.js file anywhere in this folder say you put it to js folder now to inculde it you use asset ('js/vue.js') on your blade.php file. thats it.