1. vue-router 설치해준다.1npm install vue-routercs2. resources/js/routes.js 파일을 생성한다.3. routes.js 에 Path와 Component를 정의한다.import ExampleComponent from "./components/ExampleComponent.vue"...
laravelbnb
38LARAVEL on 20-02-28
현재 라우트라우트정의가 없는 주소는 404에러가 호출된다.1. 단일 라우트 설정Route::get('/{any?}', function () { return view('welcome');})->where('any', '^(?!api\/)[\/\w\.-]*');페이지를 새로고침하면...
1. 라라벨 설치 v6.2composer create-project --prefer-dist laravel/laravel laravelbnb2. https://laravel.com/docs/6.x/frontendlaravel에서 제공하는 Boostrap 및 Vue 스캐 폴딩은 Composer 패키지에 있으며 Com...