I have a fresh laravel 5.4 installation, i run npm install
and then proceed to test the example vue component, but nothing happens.
On my project's directory I run npm run dev
and It compiles just fine. Then I execute php artisan serve
and all I see is a blank page.
Here's my view, which is the only code I wrote:
<html>
<head>
<title>Laravel</title>
</head>
<body>
<div id="app">
<example></example>
</div>
<script src="/js/app.js"></script>
</body>
</html>
Is that ok? am I missing something?
On my package.json, on devDepentencies, among other stuff I have: "vue": "^2.1.10"