Laravel 如何在blade檔案中使用Vue元件
1. 安裝laravel/ui依賴包
composer require laravel/ui
2.生成vue基本腳手架
php artisan ui react
系統還提供了非常便捷的auth腳手架,帶登入註冊。
php artisan ui react --auth
3.元件位置
Vue元件ExampleComponent.vue將被放置在resources/js/components目錄中。ExampleComponent.vue檔案是單個檔案Vue元件的示例,該元件在同一檔案中定義其JavaScript和HTML模板。單個檔案元件為構建JavaScript驅動的應用程式提供了一種非常方便的方法。該示例元件已在您的app.js檔案中註冊:
Vue.component(
'example-component',
require('./components/ExampleComponent.vue').default
);
4.在blade模版中使用
要在應用程式中使用該元件,您可以將該元件放入Blade模板xxx.blade.php中:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>@yield('title')</title>
<link rel="stylesheet" href="{{mix('/css/app.css')}}">
</head>
<body>
<divid="app">
<example-component></example-component>
</divid=>
<script src="{{mix('/js/app.js')}}"></script>
</body>
</html>
注意:在blade檔案中一定要有id為app的根節點,而且把元件放到裡面,才能生效!!!
本文由部落格一文多發平臺 OpenWrite 釋出!