gpt4 book ai didi

Laravel 8 - Jetstream + 惯性.js - Vue 开发工具不工作

转载 作者:行者123 更新时间:2023-12-03 21:42:50 27 4
gpt4 key购买 nike

我有一个使用 Laravel 8、惯性 js、Vue.js 和 webpack 的项目。
VueJs chrome 开发工具不适用于此项目。它一直显示为未检测到,我尝试重新启动它,删除并阅读开发工具。我已经检查了开发和生产,没有检测到 vuejs。任何帮助都会很棒。
应用程序.js

require("./bootstrap");

// Import modules...
import { createApp, h } from "vue";
import {
App as InertiaApp,
plugin as InertiaPlugin,
} from "@inertiajs/inertia-vue3";

const el = document.getElementById("app");

createApp({
render: () =>
h(InertiaApp, {
initialPage: JSON.parse(el.dataset.page),
resolveComponent: (name) => require(`./Pages/${name}`).default,
}),
})
.mixin({ methods: { route } })
.use(InertiaPlugin)
.mount(el);
wepack.mix.js
const mix = require("laravel-mix");

mix.js("resources/js/app.js", "public/js")
.vue()
.postCss("resources/css/app.css", "public/css", [
require("postcss-import"),
require("tailwindcss"),
require("autoprefixer"),
])
.webpackConfig(require("./webpack.config"));

if (mix.inProduction()) {
mix.version();
} else {
mix.sourceMaps(false, "source-map");
}
应用程序.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">
<meta name="csrf-token" content="{{ csrf_token() }}">

<title>{{ config('app.name', 'Laravel') }}</title>

<!-- Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap">

<!-- Styles -->
<link rel="stylesheet" href="{{ mix('css/app.css') }}">

<!-- Scripts -->
@routes
<script src="{{ mix('js/app.js') }}" defer></script>
</head>
<body class="font-sans antialiased">
@inertia
</body>
</html>

最佳答案

我在chrome和opera gx中遇到了同样的问题,我的解决方案是:

  • 安装 Vue.js devtools beta ;
  • 关闭并重新打开浏览器。
  • 关于Laravel 8 - Jetstream + 惯性.js - Vue 开发工具不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66411990/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com