Я хочу создать веб-приложение, которое использует фреймворк laravel и vue. js после того, как я произвел необходимые настройки и добавил фреймворк, связал два файла и запустил браузер, отметив, что отображается .
home. vue
<template>
<div>
<h1>zakaria sassi</h1>
</div>
</template>
welcome.blade. php
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
</head>
<body>
<div id="app">
<home></home>
</div>
<script src="{{ asset('js/app.js') }}" defer ></script>
</body>
</html>
app. js
require('./bootstrap');
window.Vue = require('vue');
Vue.component(
'home',
require('./components/home.vue'));
const app = new Vue({
el: '#app',
router,
});
webpack.mix. js
const mix = require('laravel-mix');
mix.js('resources/js/app.js', 'public/js')
.sass('resources/sass/app.scss', 'public/css');