我想在我的 Laravel/Inertia 项目中使用 Ckeditor,但我无法让它工作。我从 LaraTips 找到了一个教程,但那是为 VueJS-2 编写的。我正在使用最新版本的 Inertia,它使用 VueJS-3。我想在单独的组件中使用 Ckeditor,它(有点)有效,但我无法让旧数据显示在编辑器中。我收到错误“未捕获(在承诺中)TypeError:无法读取 Proxy.model
2021-08-26
我想在我的 Laravel 8 项目上运行npm run dev命令,但是出现此错误:[webpack-cli] Error: Unknown option '--hide-modules'[webpack-cli] Run 'webpack --help' to see available commands and optionsnpm ERR! code ELIFECYCLEnpm ERR!
2021-07-03
我的组件中有一个下拉菜单,似乎导致 Livewire 出现错误。Uncaught (in promise) DOMException: Failed to execute 'setAttribute'on 'Element': '?' is not a valid attribute name.我根据我在故障排除部分下的文档中阅读的内容添加了wire:key代码,但似乎没有帮助。它会按应有的方式更
2022-02-24
我想将数据从 Livewire 组件 A 传递到 Livewire 组件 B。目标是在需要时打开社交图标栏。这是我的设置:组件 1 类:<?phpnamespace App\Http\Livewire;use Livewire\Component;class SocialShareBar extends Component{public $show;protected $listeners = [
2023-01-20
我正在使用laravel惯性和vuejs使用搜索框为我的桌子工作。我对使用this。$ intertia.get(“/member”,{term:term this.term});在我的方法函数中使用有问题,因为它清除了我的搜索框。当我尝试使用this。$ intertia.replace(this.route(“ mement.Index”,{term:term this.term})));时,
我使用 Livewire 制作了以下简单表格:@foreach ($sms_lists as $sms_list)<x-table.row>@if($listForEdit && $listForEdit['id'] == $sms_list->id)<x-table.cell><span wire:click="firstAction">FIRST</span><span wire:click=
2021-04-29