Php/laravel/laravel5/laravelmix/vue
提供: 初心者エンジニアの簡易メモ
2018年1月18日 (木) 12:29時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==vue動作確認== laravel5.4以上にデフォで入ってるvueのexampleコンポーネントを表示 ~.blade.php <!doctype html> <html> <head> <meta charse...」)
vue動作確認
laravel5.4以上にデフォで入ってるvueのexampleコンポーネントを表示
~.blade.php
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Hello Vue</title> <link rel="stylesheet" href="css/app.css"/> <script type="text/javascript"> window.Laravel = window.Laravel || {}; window.Laravel.csrfToken = "テンプレート:Csrf token()"; </script> </head> <body>
<example></example>
<script src="js/app.js"></script> </body> </html>
以下のように表示されれば成功 Example Component I'm an example component!