1. Go to this page and download the library: Download usanzadunje/artisan-vue library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
usanzadunje / artisan-vue example snippets
return [
// Root directory where your Vue app lives
'vue_root_dir' => resource_path("js"),
// Name of the folder which stores views
'views_dir' => 'views',
// Name of the folder which stores components
'components_dir' => 'components',
// Name of the folder which stores composables(hooks)
'composables_dir' => 'composables',
// Path to the folder which stores Vuex modules
'vuex-modules_dir' => 'store/modules',
// Name of the folder which stores services
'services_dir' => 'services',
];