I'm creating a simple application and need to import some js and specific css files on a particular page, but how do you do that? In my template (Login.vue) I tried
<script>
require('./assets/js/pages/forms.js');
</script>
and
<script src="./assets/js/pages/forms.js"></script>
Remembering that I'm using laravel to generate the application, so all files are concentrated on resources / assets / , already the style files and other js files are in / public / assets / .
How could I, in my vuejs template, import any files that are in the public folder?