0

我在 Cpanel 子文件夹中托管我的 laravel-vue 项目。我的欢迎页面是

<!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>
        <meta  name="csrf-token" content="{{csrf_token()}}">
        <link rel="stylesheet" type="text/css" href="{{asset('css/app.css')}}">
        <link rel="stylesheet" type="text/css" href="{{asset('css/animate.css')}}">
    </head>
    <body>
        <div id="app">
        <app></app>
         </div>
       <script src="{{asset('js/app.js')}}"></script>
    </body>
</html>

我的页面获取所有来源,但未呈现 Vue 实例。如果有人发现问题。请帮我。

4

0 回答 0