我正在尝试使用 JetStream + 惯性将vuetify 3安装到 Laravel 8。我成功安装了 Vuetify 插件,但我不确定如何将该插件包含到 app.js 中。
这是我的 app.js
require('./bootstrap');
import { createApp, h } from 'vue';
import { createInertiaApp } from '@inertiajs/inertia-vue3';
import { InertiaProgress } from '@inertiajs/progress';
import 'vuetify/styles';
import { createVuetify } from 'vuetify';
const appName = window.document.getElementsByTagName('title')[0]?.innerText || 'Laravel';
const vuetify = createVuetify();
createInertiaApp({
title: (title) => `${title} - ${appName}`,
resolve: (name) => require(`./Pages/${name}.vue`),
setup({ el, app, props, plugin }) {
return createApp({ render: () => h(app, props) })
.use(plugin) …Run Code Online (Sandbox Code Playgroud)我在Moneris支付网关中搜索可以执行API的模块.我真的需要它,任何人都可以帮助我如何开始这个模块?或任何可以帮助如何做的教程.我已经完成了如何创建支付模块的magentocommerce步骤,但仍然不符合我的需求和要求.