「Php/laravel/laravel5/laravelmix/vue」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==vue動作確認== laravel5.4以上にデフォで入ってるvueのexampleコンポーネントを表示 ~.blade.php <!doctype html> <html> <head> <meta charse...」) |
(相違点なし)
|
2018年1月18日 (木) 12:29時点における版
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!